Using ExtractFile

NeoBook tips, tricks, code samples and more...

Moderator: Neosoft Support

Locked
Jim Brammer

Using ExtractFile

Post by Jim Brammer »

I'm trying to extract a file into c:\ WINDOWS\temp and when running the .exe, it gives me an error saying:

Cannot create file C:\WINDOWS\temp


What is that all about?

Troy



<hr>



Not only that, but when the pub is compiled, it pulls in the file I want it to add to the pub, but when I byptush the "can't...." error, the pub is supposed to run the file that was "included" in the pub, well it says that the (included file) does not exist.

Troy



<hr>



I found that using [TempDir] doesn't work on all computers. I have NO idea why. Several people wrote me saying the file was missing. I had to pull my printing programs because of this. I use [PubDir] instead when coding... now there are no problems.

Hope this helps Troy

Loraine
www.billybear4kids.com



<hr>



Using a var in the sourcefile path...

ExtractFile "[PubDir]filename.zip" "[TempDir]filename.zip"

...might not even package the source file.



During compile, the ExtractFile sourcefile needs to be a hardcoded path and filename...

ExtractFile "C:\My Files\filename.zip" "[TempDir]filename.zip"

...otherwise the compiler won't know where to find the file in order to package it. Global vars (vars in general) are only recognized by NeoBook at runtime. The compiler does not understand vars.



When you extract you need to specify the full path and filename for the Source and Destination...

correct:
ExtractFile "C:\My Files\filename.zip" "[TempDir]filename.zip"

incorrect:
ExtractFile "C:\My Files\filename.zip" "[TempDir]"
ExtractFile "[AnyVar]\filename.zip" "C:\Windows\Temp"


Take note that some of the Global Vars include a trailing backslash while others do not.


It might be a good idea to verifiy that an end user actually has a Windows Temp folder before you try to extract there...

FileExists "[WindowsDir]\Temp" "[TempDir_Ex]"
Locked