Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Touch parent folder on file modification #2422

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,11 @@ public boolean saveDocument(final boolean forceSaveEmpty) {
// Document is written iff writeable && content has changed
final CharSequence text = _hlEditor.getText();
if (!_document.isContentSame(text)) {
// Touch parent folder on edit
File current_parent_folder = _document.file.getAbsoluteFile().getParentFile();
long currentTime = System.currentTimeMillis();
current_parent_folder.setLastModified(currentTime);

final int minLength = GsContextUtils.TEXTFILE_OVERWRITE_MIN_TEXT_LENGTH;
if (!forceSaveEmpty && text != null && text.length() < minLength) {
final String message = activity.getString(R.string.wont_save_min_length, minLength);
Expand Down