Disk Operations

  • Thread starter Thread starter Andro Dgebuadze
  • Start date Start date
A

Andro Dgebuadze

Hi
I want to make some Disk operations in my coding, for example:
- delete a file
- rename a file
- zip a file
- extract a file

Can you give me a hint how can I do that?
 
In VBA code:

Kill filename 'deletes the file
Name oldfilename newfilename 'renames it

Zip and unzip are not part of the standard tools, but there are libraries
which you can add to allow those operations.


--
Regards,

Adrian Jansen
J & K MicroSystems
Microcomputer solutions for industrial control
 
Back
Top