7
votes
4answers
84 views
C#: Retrieve Names of Installed Screen Savers
I want to be able to show basically the same list that the Windows Screen Saver dialog shows, with the name of each screen saver. The problem I've run into however is that the nam …
1
vote
3answers
164 views
DirectoryInfo, FileInfo and very long path
I try to work with DirectoryInfo, FileInfo with very long path.
I try use \\?\c:\long path (i got illegal caracter with fileInfo and DirectoryInfo)
I try use file://c:/long path …
0
votes
1answer
12 views
How to set File Info from a script in Photoshop CS4
Hi,
I am developing a Photoshop CS4 script and want to set some of the File Info properties on the open document from within the script.
In other words, I want to do the equivale …
5
votes
5answers
3k views
Can I show file copy progress using FileInfo.CopyTo() in .NET?
I've created a copy utility in c# (.NET 2.0 Framework) that copies files, directories and recursive sub directories etc. The program has a GUI that shows the current file being cop …
0
votes
3answers
90 views
Using Python, how do I get an array of file info objects, based on a search of a file system?
Currently I have a bash script which runs the find command, like so:
find /storage/disk-1/Media/Video/TV -name *.avi -mtime -7
This gets a list of TV shows that were added to my …
0
votes
5answers
210 views
FileInfo compact framework 3.5 - cannot find file
Hello,
I am using the FileInfo class. However, the file info cannot find the file.
The file is called log4Net.config and I have added it to my project. I have set the properties …
0
votes
0answers
95 views
ASP.NET MVC getting last modified date/FileInfo of View
I'm required to include the last modified date on every page of my applications at work. I used to do this by including a reference to <%= LastModified %> at the bottom of my We …
0
votes
2answers
130 views
Why is FileInfo showing an extra file extension?
I have been having problems with creating a download list of files for a downloader and was getting unexplained "File Does Not Exist" returns. My .avi files were returning found b …
1
vote
3answers
75 views
Can certain File.IO objects in .NET (like DirectoryInfo) keep a removable device referenced even after programm termination
I have written a program in .NET that recurses through all files of a source and destination directory and its subdirectories, compares lastwritetime and copies/deletes files to/fr …
1
vote
6answers
252 views
File paths with non-ascii characters and FileInfo in C#
I get a string that more or less looks like this:
"C:\\bláh\\bleh"
I make a FileInfo with it, but when I check for its existence it returns false:
var file = new FileInfo(path) …
0
votes
1answer
52 views
Fileinfo Milisecond of last access isn’t update
In the method monitorCallback() I write a the time to text file.
after writing the file I check the FileInfo of file and print it.
I have got the following result:
time = 16/08 …
0
votes
1answer
191 views
Why are we getting “The path is not of a legal form” for a FileInfo constructor?
We're creating a FileInfo object in C# using the following code:
if (planConfig->OrganisationsFilePath != nullptr)
{
FileInfo^ file = gcnew FileInfo(planConfig->Organisat …
4
votes
10answers
301 views
When passing a file name to a method, should I use FileInfo or a plain file name?
Well, the title says it all. When passing a file name to a method, should I use a FileInfo object or a plain file name (string)? Why would I prefer one to the other?
Some of my co …
0
votes
1answer
100 views
Accessing MP3 Player / USB Storage device
Hi
I'm trying to access a USB Storage device, however the device although appearing in the commputer / Drives section, is not allocated a Drive letter, thus when I itterate throug …
2
votes
1answer
838 views
How do I obtain File Version info from a C++ exe in C#?
I need to get the File version information from an exe file originally written in C++ from a C# program.
Using Assembly.LoadFile(fullpath).GetName().Version results in a BadImageF …
