How to find and erase files?
How to find and erase files?
(OP)
i want to find mirc.ini , server.ini and winstat.dat and erase them.. with a program in pascal.. how can i do that?
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
How to find and erase files?
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: How to find and erase files?
Regards,
Bert Vingerhoets
vingerhoetsbert@hotmail.com
http://student.vub.ac.be/~bvingerh/
Don't worry what people think about you. They're too busy wondering what you think about them.
RE: How to find and erase files?
i need this for a vaxine to some irc virus.
RE: How to find and erase files?
Do you really have to search your hard drive for those files or do you know where they are located?
Can't you delete them from within your OS (Windows I guess)?
Regards,
Bert Vingerhoets
vingerhoetsbert@hotmail.com
http://student.vub.ac.be/~bvingerh/
Don't worry what people think about you. They're too busy wondering what you think about them.
RE: How to find and erase files?
yes.. i have to search for those files because the path of them is variable..
this is for making a vaxine for irc troyans.
RE: How to find and erase files?
del /f /s /q c:\mirc32.ini c:\server.ini c:\fserver.ini c:\scripts.ini c:\links.vbs
but in a exe..
RE: How to find and erase files?
If all the functionality you need is in that one line, you could consider using a batch program:
DOS/win example:
@ECHO OFF
del /f /s /q c:\mirc32.ini c:\server.ini c:\fserver.ini c:\scripts.ini c:\links.vbs
If you save this in a text file with a .BAT extension (e.g. remove.bat), you can *run* it as a normal executable.
Regards,
Bert Vingerhoets
vingerhoetsbert@hotmail.com
http://student.vub.ac.be/~bvingerh/
Don't worry what people think about you. They're too busy wondering what you think about them.
RE: How to find and erase files?
Based on that, these forums aren't for hackers, crackers or virus / worm writers.
K THX BYE
~*Gwar3k1*~
"To the pressure, everything's just like: an illusion. I'll be losing you before long..."
RE: How to find and erase files?
http://www.mirc.com
RE: How to find and erase files?
I'm sorry to say, but I don't think anyone will give you a Pascal course on here, and/or write it for you when there are other options already available...
Just my 2 cents..
Cheers,
Realm174