Tagged Questions

2
votes
1answer
321 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 ...
1
vote
2answers
341 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
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
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
3answers
282 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 ...
0
votes
2answers
248 views

Combine two (or more) FileInfo's

I have something similar to this: var d1 = new DirectoryInfo(Path.Combine(source, @"bills_save." + dt)); var d2 = new DirectoryInfo(Path.Combine(source, @"reports_save." + dt)); var f1 = ...
0
votes
2answers
401 views

How do I compare one collection of files to another in c#?

I am just learning C# (have been fiddling with it for about 2 days now) and I've decided that, for leaning purposes, I will rebuild an old app I made in VB6 for syncing files (generally across a ...