0
votes
3answers
65 views
Fastest way to list all files + dirs in .NET
I know how to use the DirectoryInfo.GetFiles(), but I do not think this is the fastest way to go. These "FileInfo" objects seem a little bit big...
Why do I need it? Well, I tried …
1
vote
1answer
30 views
Can boost filesystem change the read-only attribute of a file?
Is there a way to change the attribute of a file from read-only to read-write using the boost filesystem library? If not, what is the next-best way to do this on Windows (using Mic …
1
vote
5answers
88 views
.NET How to compare two Strings that represent filenames ignoring case correctly
Given that (at least on NTFS) the filesystem on Windows is case insensitive, I would like to compare String fileA to String fileB as such:
fileA.Equals(fileB, StringComparison.Cur …
4
votes
4answers
96 views
How do I “normalize” a pathname using boost::filesystem?
We are using boost::filesystem in our application. I have a 'full' path that is constructed by concatenating several paths together:
#include <boost/filesystem/operations.hpp& …
0
votes
5answers
84 views
Unix filesystem look up
How to get the list of all the files and folders in the root dir including sub-folders and their files.
1
vote
3answers
52 views
Synchronizing filesystem and cached data on program startup
I have a program that needs to retrieve some data about a set of files (that is, a directory and all files within it and sub directories of certain types). The data is (very) expen …
0
votes
1answer
53 views
Download, store, view and manage PDF File
Hi,
Can I download a PDF file and shows it without use UIWebView?
I need to show PDF and get full control of its show...
Also, Can I download and strore PDF into filesystem app?
…
1
vote
2answers
38 views
Determining directory equivalence (Windows)
Say I have two directory paths:
C:\Shares\Apple\Orange
and
\\MACHINENAME\Apple\Orange
Is there a way to (programmatically) determine if they refer to the same directory? In gen …
0
votes
2answers
61 views
Deduplicating identical files using hard links
I have a couple of identical files stored in more than one place on my hard disk.
I figure I can save a lot of disk space by hard-linking them to point to the same file.
I am a lit …
1
vote
1answer
48 views
How to determine how much free space on a drive in Qt?
I'm using Qt and want a platform-independent way of getting the available free disk space.
I know in Linux I use statfs and in Windows I use GetDiskFreeSpaceEx(). I know boost ha …
1
vote
5answers
47 views
Get SYSTEM temp folder?
I'm looking for something similar to this question. However, I am looking specifically to dynamically find the location of the system's temp folder (i.e. the temp folder used by s …
1
vote
2answers
98 views
How to create a directory in Lua ?
Is it possible to create a directory in lua ? If so, how ?
2
votes
2answers
79 views
How do I compare timestamps of files in a DOS batch script?
In DOS batch files, the method of achieving certain things is somewhat obfuscated. Fortunately, there is a fantastic reference site for DOS batch scripting: Simon Sheppard's SS64. …
5
votes
2answers
192 views
How can I efficiently retrieve the number of files in a directory?
Is there a way (on windows using Delphi 2010) to get the number of files in a dirctory without actually traversing all files?
I want to implement a progress bar during some file s …
1
vote
2answers
54 views
How to query the filesystem (NTFS) with SQLite?
Hi everybody.
How can I query the filesystem (NTFS) with SQLite?
