Click here to Skip to main content
15,917,940 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Word automation problem... Pin
Jason Henderson22-Jul-03 5:21
Jason Henderson22-Jul-03 5:21 
GeneralCDialog question Pin
User-37793622-Jul-03 3:50
User-37793622-Jul-03 3:50 
GeneralRe: CDialog question Pin
melwyn22-Jul-03 4:05
melwyn22-Jul-03 4:05 
GeneralRe: CDialog question Pin
User-37793622-Jul-03 7:06
User-37793622-Jul-03 7:06 
GeneralRe: CDialog question Pin
Iain Clarke, Warrior Programmer22-Jul-03 5:07
Iain Clarke, Warrior Programmer22-Jul-03 5:07 
GeneralRe: CDialog question Pin
User-37793622-Jul-03 7:12
User-37793622-Jul-03 7:12 
GeneralFind a file by last modified Pin
Krisna Adityawan22-Jul-03 2:38
Krisna Adityawan22-Jul-03 2:38 
GeneralRe: Find a file by last modified Pin
David Crow22-Jul-03 2:56
David Crow22-Jul-03 2:56 
Krisna Adityawan wrote:
How to find a file in a folder whatever the type is by last modified type.
ex: i want to find *.txt with last modified today


Are you wanting the newest .TXT file in a given folder? How about this pseudocode:

set lastmod to 0
for each .txt file in folder
   if file's last mod date > lastmod
      set lastmod = file's last mod date
      save name of file
   end
next


Krisna Adityawan wrote:
How to delete all file in a folder without delete the folder it self ?

SHFileOperation() should do it.
GeneralProgrammaticaly delete a file. Pin
vcseeker22-Jul-03 1:58
vcseeker22-Jul-03 1:58 
GeneralRe: Programmaticaly delete a file. Pin
Jens Doose22-Jul-03 2:12
Jens Doose22-Jul-03 2:12 
GeneralRe: Programmaticaly delete a file. Pin
vcseeker22-Jul-03 2:37
vcseeker22-Jul-03 2:37 
GeneralRe: Programmaticaly delete a file. Pin
David Crow22-Jul-03 3:01
David Crow22-Jul-03 3:01 
GeneralRe: Programmaticaly delete a file. Pin
vcseeker22-Jul-03 4:06
vcseeker22-Jul-03 4:06 
GeneralRe: Programmaticaly delete a file. Pin
melwyn22-Jul-03 5:02
melwyn22-Jul-03 5:02 
GeneralRe: Programmaticaly delete a file. Pin
basementman22-Jul-03 7:31
basementman22-Jul-03 7:31 
GeneralParsing .asp page Pin
Anonymous22-Jul-03 1:41
Anonymous22-Jul-03 1:41 
GeneralUser rights Pin
Hashim Saleem22-Jul-03 1:24
Hashim Saleem22-Jul-03 1:24 
GeneralRe: User rights Pin
Mazdak22-Jul-03 1:32
Mazdak22-Jul-03 1:32 
GeneralRe: User rights Pin
Anonymous22-Jul-03 5:22
Anonymous22-Jul-03 5:22 
GeneralRe: User rights Pin
Iain Clarke, Warrior Programmer22-Jul-03 5:27
Iain Clarke, Warrior Programmer22-Jul-03 5:27 
GeneralRe: User rights Pin
Hashim Saleem22-Jul-03 7:15
Hashim Saleem22-Jul-03 7:15 
GeneralRe: User rights Pin
Hashim Saleem22-Jul-03 22:00
Hashim Saleem22-Jul-03 22:00 
GeneralRe: User rights Pin
Iain Clarke, Warrior Programmer22-Jul-03 22:43
Iain Clarke, Warrior Programmer22-Jul-03 22:43 
QuestionHow to get Path of the Exe file Pin
Hashim Saleem22-Jul-03 0:47
Hashim Saleem22-Jul-03 0:47 
AnswerRe: How to get Path of the Exe file Pin
Mazdak22-Jul-03 0:55
Mazdak22-Jul-03 0:55 

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.