create folder on a networked drive?
Posted: Tue Feb 23, 2016 2:59 pm
				
				Hi everyone,
I'm using a bit of code that I was directed to previously by Klaus. I wondered if anyone here had any idea if it would be possible to use it on a network drive that has been mapped locally as Z:\
Here's what i've come up with so far, but i'm obviously missing something... just not sure what.
I'm sure it's something silly, but can't seem to find anything about it.
Thanks in advance for any help you can provide.
-Sean
			I'm using a bit of code that I was directed to previously by Klaus. I wondered if anyone here had any idea if it would be possible to use it on a network drive that has been mapped locally as Z:\
Here's what i've come up with so far, but i'm obviously missing something... just not sure what.
Code: Select all
function mkprefsfolder
   put specialfolderpath("Z:\Software\App") into spfp
   if there is not a folder (spfp & "/test") then
      create folder (spfp & "/test" )
   end if
   return (spfp & "/test/")
end mkprefsfolder
on mouseUp
mkprefsfolder
end mouseUpThanks in advance for any help you can provide.
-Sean

