Disk Operations

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?
 
A

Adrian Jansen

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
 
Top