Creating a hidden folder from Access

I

IKMD66

Hi,

I have packaged up my database using ADE and all has been working well. I
now want to deploy the next version, however as part of the deployment I
requrie additional folders to be avaialble on the PC's to which the DB will
be deployed. Whilst I can check if a folder is available and / or create
folders using VBA - Can you advise how I would create a hidden folder?

Thanks in advance.

Kirk
 
S

Stuart McCall

IKMD66 said:
Hi,

I have packaged up my database using ADE and all has been working well. I
now want to deploy the next version, however as part of the deployment I
requrie additional folders to be avaialble on the PC's to which the DB
will
be deployed. Whilst I can check if a folder is available and / or create
folders using VBA - Can you advise how I would create a hidden folder?

Thanks in advance.

Kirk

To create a hidden folder called 'qwerty' off the root of c:

MkDir "c:\qwerty"
SetAttr "c:\qwerty", vbHidden
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top