Click here to Skip to main content
15,896,912 members
Home / Discussions / C#
   

C#

 
GeneralRe: Static constructor Pin
erfgerfgerger30-Jul-09 2:01
erfgerfgerger30-Jul-09 2:01 
GeneralRe: Static constructor Pin
Daniel Grunwald30-Jul-09 2:04
Daniel Grunwald30-Jul-09 2:04 
GeneralRe: Static constructor Pin
erfgerfgerger30-Jul-09 2:07
erfgerfgerger30-Jul-09 2:07 
GeneralRe: Static constructor Pin
PIEBALDconsult30-Jul-09 4:28
mvePIEBALDconsult30-Jul-09 4:28 
QuestionExtreme right click on the scollbar any event? Pin
spalanivel30-Jul-09 0:14
spalanivel30-Jul-09 0:14 
AnswerRe: Extreme right click on the scollbar any event? Pin
Alan N30-Jul-09 3:15
Alan N30-Jul-09 3:15 
GeneralRe: Extreme right click on the scollbar any event? Pin
spalanivel30-Jul-09 18:52
spalanivel30-Jul-09 18:52 
QuestionChecking file longer than 1 hour Pin
Mninawa29-Jul-09 23:45
Mninawa29-Jul-09 23:45 
Hello Everyone
I need someone who can help me.I want to check the oldest file in the directory, and if that file is older than one hour then send an alert.
Here is my current work.
for (int index = 0; index < files.Length; index++)//Loop through the file.
 {
     string lastMTime = File.GetLastAccessTime(files[index]).ToString("ddMMyyymmss");//Get the last modified file by date.
     files[index] = lastMTime + files[index];//Shuffle the array
 }
 Array.Sort(files);//Sort the array
 string oldFile = Path.GetFileName(files[0].Substring(15));//Get the old file.
 if(File.GetCreationTime(oldFile))//  this is where i am stuck.....

<br />
<br />
if(File.GetCreationTime(oldFile))//  this is where i am stuck.....<br />


Please my code project peeps, help me out....
Thank you all in Advance
Marvel...
AnswerRe: Checking file longer than 1 hour Pin
Moreno Airoldi29-Jul-09 23:52
Moreno Airoldi29-Jul-09 23:52 
AnswerRe: Checking file longer than 1 hour [modified] Pin
Mirko198030-Jul-09 0:04
Mirko198030-Jul-09 0:04 
AnswerRe: Checking file longer than 1 hour Pin
Luc Pattyn30-Jul-09 0:15
sitebuilderLuc Pattyn30-Jul-09 0:15 
Questionrun application without install dotnet Pin
mjawadkhatri29-Jul-09 23:29
mjawadkhatri29-Jul-09 23:29 
AnswerRe: run application without install dotnet Pin
musefan29-Jul-09 23:46
musefan29-Jul-09 23:46 
GeneralRe: run application without install dotnet Pin
mjawadkhatri29-Jul-09 23:52
mjawadkhatri29-Jul-09 23:52 
GeneralRe: run application without install dotnet Pin
Tom Deketelaere30-Jul-09 0:08
professionalTom Deketelaere30-Jul-09 0:08 
GeneralRe: run application without install dotnet Pin
Kevin McFarlane30-Jul-09 0:12
Kevin McFarlane30-Jul-09 0:12 
GeneralRe: run application without install dotnet Pin
Baeltazor30-Jul-09 18:52
Baeltazor30-Jul-09 18:52 
AnswerRe: run application without install dotnet Pin
Henry Minute30-Jul-09 4:01
Henry Minute30-Jul-09 4:01 
QuestionNested DataGridView Pin
Muammar©29-Jul-09 22:52
Muammar©29-Jul-09 22:52 
AnswerRe: Nested DataGridView Pin
Henry Minute30-Jul-09 3:58
Henry Minute30-Jul-09 3:58 
GeneralRe: Nested DataGridView Pin
Muammar©30-Jul-09 7:28
Muammar©30-Jul-09 7:28 
QuestionExcel app to C# winform Pin
Dimitris Nemtsov29-Jul-09 22:47
Dimitris Nemtsov29-Jul-09 22:47 
AnswerRe: Excel app to C# winform Pin
jasonmp19-Nov-10 4:56
jasonmp19-Nov-10 4:56 
GeneralRe: Excel app to C# winform Pin
Dimitris Nemtsov19-Nov-10 10:25
Dimitris Nemtsov19-Nov-10 10:25 
Questioncreate a control inside a thread and update it Pin
Vivek Vijayan29-Jul-09 22:32
Vivek Vijayan29-Jul-09 22:32 

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.