2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Daniel Mackey
Hi All, I have just run into something weird and I was wondering if anybody could shed some light. Not sure if it is a CF6.1 problem, CF6.1/7 or an underlying Java problem. If I try any CFFILE operation on a file that has 2 sequential spaces in the file name, CFFILE fails. Windows does not

Re: 2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Barney Boisvert
What if you specify a filename to upload into with the CFFILE tag, rather than just a directory? I haven't run into the problem myself, but that might alleviate it. cheers, barneyb On 9/26/05, Daniel Mackey [EMAIL PROTECTED] wrote: Hi All, I have just run into something weird and I was

Re: 2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Daniel Mackey
Hi Barney, That was just an example. Lets say I have user files somewhere that got there other than through CF and then I have to work with them. I cant do anything with them if there are 2 sequential spaces. If you have time, you may try it on your box for me. Create a file in a folder and

Re: 2 Spaces causing problems for CFMX 6.1

2005-09-26 Thread Barney Boisvert
This code ran just dandy on my CF6.1/Apache2/RedHat 8.0 box: cfset filename = #getDirectoryFromPath(getCurrentTemplatePath())#/test space.tmp / cffile action=write file=#filename# mode=664 output=hello, world / cffile action=delete file=#filename# / cheers, barneyb On 9/26/05, Daniel Mackey