Tagged Questions
The fileinfo tag has no wiki summary.
16
votes
5answers
12k 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 copied, the current ...
11
votes
8answers
3k views
GetFiles with multiple extentions
How do you filter on more than one extension?
I've tried:
FileInfo[] Files = dinfo.GetFiles("*.jpg;*.tiff;*.bmp");
FileInfo[] Files = dinfo.GetFiles("*.jpg,*.tiff,*.bmp");
8
votes
1answer
186 views
Caching FileInfo properties in C#
From the MSDN documentation for the FileInfo.Name property, I see that the data for the property is cached the first time it is called and will only be updated subsequently by using the Refresh ...
7
votes
5answers
396 views
How can I determine when a file was most recently renamed?
I have a program that compares files in two folders. I want to detect if a file has been renamed, determine the newest file (most recently renamed), and update the name on the old file to match.
To ...
7
votes
4answers
381 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 names that show up in ...
6
votes
10answers
562 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 colleagues like to ...
5
votes
3answers
1k views
Get all files and directories in specific path fast
I am creating a backup application where c# scans a directory. Before I use to have something like this in order to get all the files and subfiles in a directory:
DirectoryInfo di = new ...
5
votes
2answers
456 views
Blank space after file extension -> weird FileInfo behaviour
Somehow a file has appeared in one of my directories, and it has space at the end of its extension -
its name is "test.txt ". The weird thing is that Directory.GetFiles() returns me the path of this
...
4
votes
7answers
145 views
File.Delete() versus FileInfo.Delete()
Is there much of a difference between using the static methods of the File object as opposed to creating a new FileInfo object and calling those methods?
4
votes
4answers
278 views
fileinfo and mime types I've never heard of
I'm not a stranger to mime types but this is strange. Normally, a text file would have been considered to be of text/plain mime but now, after implementing fileinfo, this type of file is now ...
3
votes
3answers
63 views
Get FileInfo On Itself?
My C# program is in the form of a single .exe file. Therfore, the user can store it anywhere and name it anything. How can I use the FileInfo class to get its Attributes if I don't know the path?
3
votes
1answer
5k 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->OrganisationsFilePath);
...
3
votes
1answer
2k 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 BadImageFormatException.
...
2
votes
3answers
81 views
C# FileInfo - Find duplicate Files
I have a FileInfo array with ~200.000 File Entries. I need to find all files which have the same filename. I need as result from every duplicate file the directory name and filename because I want to ...
2
votes
1answer
143 views
Mime type detection fails with fileinfo on PHP 5.3.8
I'm having trouble detecting the mime type of a simple PNG file with fileinfo, with PHP 5.3.8 installed on a CentOS server.
The problem
Basically, if I have the following code :
<?php
$const = ...
2
votes
2answers
187 views
How to get the drive letter from a full name of the drive
How could the drive letter (e.g. F:\) be obtained from a known full name (if it is present) of a drive (e.g. WORKMEMORYSTICK) using C# under Windows?
Even the other way around would be a start.
2
votes
2answers
120 views
Problems with FileInfo
I'm an italian user and I've these directories:
Utenti (as Users)
Immagini (as Pictures)
Etc..
Now, when I search a file with Windows SDK DSearch API, I get this path:
C:\Utenti\\myfile.txt
and ...
2
votes
3answers
273 views
DirectoryInfo GetFiles TOP number
I want to return 10 files only from a directory. Is this possible?
DirectoryInfo d = new DirectoryInfo(HttpContext.Current.Server.MapPath("~/xml"));
FileInfo[] files = d.GetFiles("*.xml");
This ...
2
votes
3answers
307 views
C# How to loop a large set of folders and files recursively without using a huge amount of memory
I want to index all my music files and store them in a database.
I have this function that i call recusively, starting from the root of my music drive.
i.e.
start > ReadFiles(C:\music\);
...
2
votes
1answer
322 views
Application Settings + DirectoryInfo/FileInfo
I'm still new to C#... I'm building a WPF application and I'm trying to apply some User Application Settings. It's easy to insert standard App Settings (int, double, string, etc). I've even got ...
2
votes
1answer
643 views
C# Problem with fileinfo delete command
My application does this, play the selected sound using wmplib and upon statechangeevent = 1 (media player stopped), i will close the player using the close() command and setting the URL to "";
Now ...
2
votes
1answer
633 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 WebForms master page ...
1
vote
1answer
106 views
Silverlight 4 FileInfo.OpenRead method is working on any folder without elevated permissions
I have a Silverlight 4 application running inside the browser without elevated permission and in it I have an upload files functionality section where an OpenFileDialog window appear and you can ...
1
vote
3answers
346 views
How to check if a file exists in a folder?
I need to check if an xml file exists in the folder.
DirectoryInfo di = new DirectoryInfo(ProcessingDirectory);
FileInfo[] TXTFiles = di.GetFiles("*.xml");
if (TXTFiles.Length == 0)
{
...
1
vote
1answer
86 views
Setting CreationTime of a directory
I am trying to set the creation time of a directory with C#.
This works very easy with files in this way:
FileInfo fi = new FileInfo(strFile);
fi.CreationTime = DateTime.Now;
So I tried it with a ...
1
vote
1answer
215 views
Mouse Listener ,detect File Mouse Over in Explorer
Im working on a Project which Handles with File information's ,like Tool-tips File Attributes etc.
So my question is can i integrate and does anyone yet ,a Mouse Listener if Mouse is Over a File in ...
1
vote
1answer
1k views
Using php_fileinfo.dll and finfo_open in Windows PHP 5.3.5
I'm having trouble calling finfo_open in a PHP script running on Windows Server 2003 with PHP 5.3.5 & IIS 6. The call always returns Fatal error: Call to undefined function finfo_open() in...
...
1
vote
2answers
1k views
How to find a file on iPad?
I am supposed to have downloaded a file on the iPad simulator, using an appication.
How can I check that this file is present on the iPad simulator file system ?
Is there some file manager that I ...
1
vote
2answers
172 views
Can't get accurate file size
This is how I try to get the file size in MB:
FileInfo file_size = new FileInfo(list[i]);
double friendly_file_size = (file_size.Length / 1048576);
...
1
vote
3answers
1k views
c# replace string within file
String.Replace doesn't seem to work properly when replacing a portion of an HTML file's content. For example, String.Replace replaces </body></html> with blah blah blah ...
1
vote
2answers
359 views
FileInfo.OpenRead() - what type of encoding does it use?
I'm using this method to write to a MemoryStream object, which is subsequently stored a binary in SQL. It is being used to read in .HTML files from the file system on Windows.
How do I know which ...
1
vote
2answers
99 views
Accessing http://< someserver.com/logs:<someportnumber> > in client side using c# code
I have a scenario in my mind .. I need validations/suggestions from Stack over flow !! :)
There is a (remote)apache server hosting this URL "http://someserver.com/logs/log.txt:4041" .When i hit this ...
1
vote
1answer
120 views
Path of recent creation time of a single file using C#
How to get the path of the recent or latest file based on creation time (say 'test.xml) located in many sub directories within a main directory.
1
vote
2answers
343 views
DirectoryInfo accessing a virtual folder
I'm trying to use DirectoryList on a virtual directory, to build up a list of files. However I get the error;
URI not supported
Is there an alternative to this that supports URLs? Here's my ...
1
vote
3answers
450 views
Drag drop a file on top of .exe file to get fileinfo
As the title say.
I know how to do this in C# only, but when trying to do this with WPF I can't find out where or what to add to read the filename when the program starts.
public static void ...
1
vote
3answers
333 views
File details from a string in C#
I have a string in C#
String file="\\mserver-80\docs\somedoc.doc"
Now How do I get fileInfo from the above sting.
What I mean is,
I want to declare something like
FileInfo fInfo = new ...
1
vote
2answers
282 views
ContentLength vs Actual File.Length
Does anyone has any experience wherein the requested file to download (HTTP) content length in the header does not equal to the actual file length (size) when downloaded?
1
vote
2answers
252 views
Understanding a boolean on DirectoryInfo.Exists
var fileOpen = new OpenFileDialog();
var clickedOk = fileOpen.ShowDialog();
if (!((bool) clickedOk)) return;
var path = fileOpen.FileName;
var diPath = new DirectoryInfo(path);
var fiPath = new ...
1
vote
3answers
148 views
is it possible to create an in-memory file and access it with FileInfo?
I want to FTP a file, and I am using the FileInfo class for certain things.
Would it be possible to create an in-memory file and initialize FileInfo with it?
How could I then write the file to disk ...
1
vote
1answer
702 views
Pass StreamReader to WCF service from Silverlight's Async Call
I want to import records from csv file to the DB from Silverlight front end. I am using WCF service to perform the DB operations. When I pass the entire file path (hard coded), I am able to add ...
1
vote
3answers
2k 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 (i got uri not ...
1
vote
6answers
1k 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);
file.Exists;
If ...
1
vote
3answers
284 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/from the destination ...
1
vote
3answers
613 views
LastAccess Time is incorrect
every time i create a FileInfo object and access it's lastaccesstime property, it's always a few minutes off. the file property window remains constant, however the application shows that it is ...
0
votes
1answer
28 views
what buffer size should i use to fast transfer using tcp socket?
i have 2 questions
1 - do i have to Close the FileInfo after reading the file bytes??
file.OpenRead().Read(fileData, 0, fileSize);
if yes .. there's no close property !! should i use FileStream ?
2 ...
0
votes
2answers
83 views
Upload a file, MemoryStream vs FileInfo
I have to generate some files in my asp.net web application and send it to the client.
So I made a method who work with a memory stream and send the buffer to the http response.
It is working fine ...
0
votes
2answers
42 views
Image sizes in a FileInfo variable
I'm currently working on a control which displays all images held within a folder so that the client is aware of what they have uploaded.
I have set attributes I wish to display, in order to keep ...
0
votes
4answers
105 views
how get file extension from FileInfo In asp.net With c#
plz look at the below codes :
foreach (FileInfo f in dir.GetFiles("*.*"))
{
Files += "<div class='divFilesBody_Row'>";
Files += "<div ...
0
votes
3answers
90 views
FileInfo Array From Strings
Currently I am getting the size of a file by using:
FileInfo fileSize = new FileInfo(@"C:\file.txt");
long size = fileSize.Length;
Rather than do this for every file I want, I thought you must be ...
0
votes
1answer
23 views
FileInfo: passing FileInfo argument to method
I have the following VB function which takes a FileInfo object as a parameter:
Public Shared Shadows Sub Start(ByVal filePath As FieldInfo)
XmlConfigurator.ConfigureAndWatch(New ...