Search found 11 matches
- 05 Sep 2020, 18:23
- Forum: Help
- Topic: sync.ffs_lock is touching source folder modified date/time
- Replies: 4
- Views: 1871
Re: sync.ffs_lock is touching source folder modified date/time
therube -- that would be an excellent depth-first iterative approach if the program does indeed follow a depth-first algorithm. I'm not positive it does, but someone else can weigh in on that. It would be O(n) where n is the number of folders in the tree. Probably the minimum bounds you can have on ...
- 05 Sep 2020, 18:19
- Forum: Help
- Topic: ENOENT (statfs) on Mac Symlinks
- Replies: 5
- Views: 856
Re: ENOENT (statfs) on Mac Symlinks
+1.
Running into this while attempting to copy the contents of a Backups.backupdb Time Machine backup to a new SparseBundle. I have, for now, turned on the option to ignore errors. I did ask the program to copy file access permissions/ACLs, hoping that it would know that escalation is required. The ...
Running into this while attempting to copy the contents of a Backups.backupdb Time Machine backup to a new SparseBundle. I have, for now, turned on the option to ignore errors. I did ask the program to copy file access permissions/ACLs, hoping that it would know that escalation is required. The ...
- 05 Sep 2020, 14:46
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Re: Case-sensitive collision detection
Right -- I certainly wouldn't be advocating for an algorithm that creates a performance hit across the board, but perhaps an "Advanced FS compatibility detection" setting would allow some performance hit to do some benchmarking and understand what additional considerations (i.e., <=O(N) performance ...
- 05 Sep 2020, 14:35
- Forum: General Discussion
- Topic: Preserving dates and times of directories
- Replies: 35
- Views: 19811
Re: Preserving dates and times of directories
This thread was linked from a (duplicate) post I made a couple of days ago. I'd like to add my 2c that the importance of modified dates in folders has to do with indexing/sorting and search functions. If I'm looking for something with Spotlight, it pays attention to these modified folder dates. That ...
- 04 Sep 2020, 01:17
- Forum: Help
- Topic: Folder date/time preservation
- Replies: 2
- Views: 558
Re: Folder date/time preservation
I see this has already been discussed here: viewtopic.php?t=6123
- 04 Sep 2020, 01:12
- Forum: Help
- Topic: Folder date/time preservation
- Replies: 2
- Views: 558
Folder date/time preservation
I'm transferring large folder trees right now and running into a problem whereby the files in the job are preserving date/time info, but the folders are not. Any zero-file folders are fine, but folders with files inside will ultimately fail. Considering the algorithm as I understand it currently, I ...
- 03 Sep 2020, 19:37
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Re: Case-sensitive collision detection
Yes, that's something I alluded to in my initial post. I understand that position, but there are quite a few aspects here that make this worth looking at (and talking about) rather than just dismissing it out of hand because it seems uncommon. I don't really argue that point, necessarily, but this ...
- 03 Sep 2020, 16:53
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Re: Case-sensitive collision detection
Yes it is, but sometimes you don't get to choose what happens with massive data moves and merges from multiple file structures. ;-) The point is to handle the error case gracefully, not to make a case for developing this error case intentionally.
- 03 Sep 2020, 14:27
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Re: Case-sensitive collision detection
As an aside, technically FFS could detect the capability of the underlying filesystem by intentionally writing a file and attempting to access it with reversed casing. That would infer the capability of the access method and thereby allow the conclusion that it were capable/not capable of allowing ...
- 03 Sep 2020, 14:22
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Re: Case-sensitive collision detection
Yes that is correct -- the detection would be that there are two references for the same location/contents. This is inferred by the CIFS access method paired with the case-insensitive collision. It could easily be a warning generated in the log that clues the user in to the possibility of an ...
- 03 Sep 2020, 13:58
- Forum: General Discussion
- Topic: Case-sensitive collision detection
- Replies: 12
- Views: 1882
Case-sensitive collision detection
Greetings. I've recently started using your software for a major data migration from a Drobo5N NAS so that I can upgrade the underlying filesystem of the array. In the process, I've discovered a strange situation which might be experienced by few others, but your software could help alleviate the ...