Click here to Skip to main content
15,921,463 members
Home / Discussions / C#
   

C#

 
Generalremote installation from a webserver Pin
bhatti8129-Jul-03 20:37
bhatti8129-Jul-03 20:37 
GeneralRe: remote installation from a webserver Pin
Kannan Kalyanaraman30-Jul-03 5:31
Kannan Kalyanaraman30-Jul-03 5:31 
GeneralUser Interface Process Application Block for VS.Net 2002 Pin
xianuz29-Jul-03 20:11
xianuz29-Jul-03 20:11 
GeneralSimilarity Detection Pin
Ali Parvaresh29-Jul-03 19:37
Ali Parvaresh29-Jul-03 19:37 
GeneralRe: Similarity Detection Pin
leppie30-Jul-03 7:18
leppie30-Jul-03 7:18 
GeneralRe: Similarity Detection Pin
Nathan Blomquist30-Jul-03 8:41
Nathan Blomquist30-Jul-03 8:41 
GeneralQuick file size checker Pin
eggie529-Jul-03 18:35
eggie529-Jul-03 18:35 
GeneralRe: Quick file size checker Pin
Nick Parker29-Jul-03 19:00
protectorNick Parker29-Jul-03 19:00 
Really quick example (the FileInfo class provides a Length property to identify the size of the current file):

string dirName = "C:\\";
DirectoryInfo dirInfo = new DirectoryInfo(dirName);

Console.WriteLine("{0} contains the following files:", dirName);
Console.WriteLine("Size\t Filename");
foreach (FileInfo fileInfo in dirInfo.GetFiles()) 
{
    try { 
        Console.WriteLine("{0}\t {1}", 
                          fileInfo.Length, fileInfo.Name);
    }
    catch (IOException e) {
        Console.WriteLine("\t {0}: {1}", fileInfo.Name, e.Message);
    }
}


-Nick Parker
GeneralRe: Quick file size checker Pin
eggie529-Jul-03 21:32
eggie529-Jul-03 21:32 
GeneralI have a interesting question! Pin
JeffSayHi29-Jul-03 16:03
JeffSayHi29-Jul-03 16:03 
GeneralRe: I have a interesting question! Pin
Mazdak29-Jul-03 21:06
Mazdak29-Jul-03 21:06 
GeneralRe: I have a interesting question! Pin
Ista30-Jul-03 14:45
Ista30-Jul-03 14:45 
Generaloverride root/parent node in tree menu Pin
Sonia Jaiswal29-Jul-03 15:31
Sonia Jaiswal29-Jul-03 15:31 
GeneralRe: override root/parent node in tree menu Pin
StealthyMark30-Jul-03 17:57
StealthyMark30-Jul-03 17:57 
GeneralRe: override root/parent node in tree menu Pin
Sonia Jaiswal30-Jul-03 22:04
Sonia Jaiswal30-Jul-03 22:04 
GeneralQuerying Sharepoint server from dotnet Pin
worldspawn29-Jul-03 13:50
worldspawn29-Jul-03 13:50 
GeneralAutomation Pin
Nivitha29-Jul-03 12:30
Nivitha29-Jul-03 12:30 
GeneralRSA Question Pin
jtmtv1829-Jul-03 12:15
jtmtv1829-Jul-03 12:15 
GeneralRe: RSA Question Pin
Kastro30-Jul-03 7:16
Kastro30-Jul-03 7:16 
GeneralPrinting Access Database labels C# Pin
Anonymous29-Jul-03 12:12
Anonymous29-Jul-03 12:12 
GeneralRe: Printing Access Database labels C# Pin
Ista30-Jul-03 4:23
Ista30-Jul-03 4:23 
GeneralDeployment Project Pin
kgoodrich29-Jul-03 10:12
kgoodrich29-Jul-03 10:12 
GeneralPassing XmlResolver to Transform() method Pin
kyledunn29-Jul-03 10:08
kyledunn29-Jul-03 10:08 
GeneralRe: Passing XmlResolver to Transform() method Pin
Nick Parker29-Jul-03 12:52
protectorNick Parker29-Jul-03 12:52 
GeneralRe: Passing XmlResolver to Transform() method Pin
kyledunn7-Aug-03 8:39
kyledunn7-Aug-03 8:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.