null null
1
null
'COPY' do not mean 'EXPORT' :)
This won't work on non-english version of Windows prior to Windows Vista because the Documents and Settings string gets localized. Using getenv('APPDATA') is a much easier way and works on all Windows versions.
getenv('APPDATA')
Ah, good call Michael I wasn't even thinking about that. I suppose that is why programming anything in 30 minutes should be reviewed haha.
'COPY' do not mean 'EXPORT' :)
This won't work on non-english version of Windows prior to Windows Vista because the Documents and Settings string gets localized. Using
getenv('APPDATA')
is a much easier way and works on all Windows versions.Ah, good call Michael I wasn't even thinking about that. I suppose that is why programming anything in 30 minutes should be reviewed haha.