Tagged Questions

3
votes
5answers
97 views

How to test whether application handles slow/flaky filesystems properly?

I want to ensure that my application doesn't have any UI freezes when working on files on slow filesystem (e.g. networked, CD/DVD or spun-down HDD). I'm using Cocoa filesystem operations directly. …
0
votes
2answers
343 views

How to handle exception when Directory.GetFiles() throws an exception when it finds a file name it does not “like”?

On a Vista machine with the valid path C:\Users\David, calling Directory.GetFiles(@"C:\Users\David") throws the following ArgumentException when run as the David user, who can view the contents of the …
1
vote
2answers
70 views

MacFUSE: Keepalive?

Is there a way to configure MacFUSE to keep a mounted volume alive if the remote host is set to break the connection due to inactivity? If there is no direct way to configure this, would there be a …
0
votes
1answer
540 views

Why is my mounted MacFUSE NTFS vol read-only?

I got the impression from the MacFUSE site that when you install it and connect an NTFS volume it will be writable. However, the volume I mounted is read only. Here is some of the output of mount... …
2
votes
2answers
193 views

Can Spotlight index a MacFUSE filesystem?

Spotlight indexes at the file level, so a file containing a complicated data structure may need to be split into a set of files for Spotlight to index it in a useful way. Can you use MacFUSE to …