cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to Provide File Path in MII 12 to access file located in Network Path

Former Member
0 Kudos
540

Hi,

How can I locate a file which is placed Network Path?

Iam trying to access PDF file which is stored in Network Drive, I just want to open folder which contains all PDF files located in some Network Path on click of button.

I tried all possibilities like below:

window.open("file
\G:");

window.open("

SERVER-NAME
Folder Name");

But Iam unable to Fix this.

Please Help me in this regard

Regards,

Padma

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Rao,

this is less a MII than a browser or mapping problem.

You can access a local file in a browser like this:

window.open('file:///c:/folder/file.txt');

However, in case of MII local means local to the MII server. So in the above example the file is located on the c driver of the MII server.

If you want to access files on a network drive, the folders to the files should be mapped on the MII server so you are able to address them like they were local files.

I haven't tried to address network folders directly, because we are running MII on Unix.

Michael

Former Member
0 Kudos

Hi Michael,

I tried giving what you said but it says acsess denied.

Problem is, my customer has created Network Drive which gets files from other Machine, they are storing all files in MII machine creating new drive as G:\..

However ,I tried opening file which is located on the c driver of the MII server by giving

window.open("
ServerName\c$");

This works fine,it opens C drive.

But I need to open file located in network drive.

Regards,

Rao