Results 1 to 5 of 5

Thread: Restrict Folder Access

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Apr 2004
    Posts
    16

    Restrict Folder Access

    Hi there,

    I'm developing a Document Management Application using VB and Access. The objective of the program is to get the documents from the client computers into the server. I'm using File System Object to create folders in the server and to transfer files from the clients to the server. I installed the program on the server and made shortcuts on client computers to access it. Everything but document security is working fine. I've to give the read-write permission on the server to make the clients transfer the files. Once the files got transferred to the server, I want to restrict the access. Is there any other logic to achieve this? Can ASP or VBScript (I'm not much familiar with these) help to achieve the desired security?

    Regards,

    Rajesh Joy

  2. #2
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Restrict Folder Access

    Make another application that will move the document file they saved from another secure folder, which they don't have access.

    So create a sort of timer, everytime a client save the docs to a folder, it'll automatically detect the folder for files then transfer the file to a secure folder.

    Client ------- > \\Network\Folder ---------> \\Secure\Folder

    Something like that.

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Apr 2004
    Posts
    16

    Re: Restrict Folder Access

    Hi Zynder,

    Good suggestion..... Let me try this out.

    B/W, is it possible to invoke another exe form a VB program?

  4. #4
    Frenzied Member zynder's Avatar
    Join Date
    Nov 2006
    Location
    localhost
    Posts
    1,434

    Re: Restrict Folder Access

    Yes.

    Use the Shell function.

    VB Code:
    1. Shell "C:\MyFolder\App.exe", vbNormalFocus

  5. #5

    Thread Starter
    Junior Member
    Join Date
    Apr 2004
    Posts
    16

    Re: Restrict Folder Access

    yup.., i just forget 'shelling'.. thanks zynder

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width