Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
4k views

How to use FileInfo object from Powershell

I am now starting to use PowerShell and after a lot of time using the Unix shells and want to know how to check for the existence of a file or directory. In Powershell why does Exist return false in ...
2
votes
1answer
174 views

FileInfo.Length always show a files total size, not actual current size

I am trying to monitor the progress of a large file copy proceedure (without manually copying the bytes of data myself) using the File.Copy([FileName]) command. So what I am trying to do is get the ...
2
votes
3answers
392 views

How do I tell my C# application to close a file it has open in a FileInfo object or possibly Bitmap object?

So I was writing a quick application to sort my wallpapers neatly into folders according to aspect ratio. Everything is going smoothly until I try to actually move the files (using FileInfo.MoveTo()). ...
1
vote
2answers
41 views

Searching By File Extensions VB.NET

Hi all i have been trying to search a specified directory and all sub directories for all files that have the specified file extension. However the inbuilt command is useless as it errors up and dies ...
0
votes
6answers
61 views

Using FileInfo to see when a file was updated… on another server

Hey guys I am pulling in a Vehicle Feed to an autodealer website for one of our clients. Every night at midnight(ish) the new XML file is uploaded to our FTP and it overwrites the current one. ...
0
votes
2answers
525 views

VB.Net - FileInfo.FullName - Am I missing something?

I have some some code which was written before I started here (sounds like a submission for The Daily WTF!) which loads an xml file for processing (the Throw line has been simplified to hide the ...
0
votes
3answers
2k views

Measuring fileinfo.Length objects into kbs

I have the following code: foreach (string p in dirs) { string path = p; string lastAccessTime = File.GetLastAccessTime(path).ToString(); bool DirFile = ...
0
votes
1answer
266 views

FileInfo object property question - C#?

Does the following System.IO.FileInfo properties map to the following properties in the Windows Explorer application: CreationTime = Date Created LastWriteTime = Date Modified LastAccessTime = Date ...
0
votes
2answers
616 views

What is the best way to rename (move) file system branches in .NET?

I would like to rename files and folders recursively by applying a string replacement operation. E.g. The word "shark" in files and folders should be replaced by the word "orca". C:\Program ...