[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
Files dont have a DateCreated value, only DateModified _ From: AJ Mercer [mailto:ajmer...@gmail.com] Sent: Monday, 31 August 2009 3:49 PM To: cfaussie@googlegroups.com Subject: [cfaussie] set file created date with ColdFusion Does anyone know of a way to set a file's created date?

[cfaussie] Cold Fusion Web Service WSDL into Visual Studio

2009-08-31 Thread Brad Apps
Good Afternoon, We are creting a CFC with some web services and importing them into Visual Studio is producing the following error, the WSDL of the very simple test CFC is below, thank you for your time and replies. c:\Program Files (x86)\Microsoft Visual Studio 9.0\VCwsdl http://10.0.8.48/ecco

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread AJ Mercer
see attached screenshot I would like to set the highlighted property 2009/8/31 Steve Onnis st...@cfcentral.com.au Files dont have a DateCreated value, only DateModified -- *From:* AJ Mercer [mailto:ajmer...@gmail.com] *Sent:* Monday, 31 August 2009 3:49 PM

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread phaddon
On Mon, Aug 31, 2009 at 04:29:32PM +1000, Steve Onnis wrote: Files dont have a DateCreated value, only DateModified If his server is running on a filesystem later than DOS then every file will have 3 date values, not 1: - date created - date modified - date accessed If he is able to execute

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Kym Kovan
AJ Mercer wrote: see attached screenshot I would like to set the highlighted property AFAIK You cannot change the created date, it would make that date meaningless. -- Yours, Kym Kovan mbcomms.net.au --~--~-~--~~~---~--~~ You received this message

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread phaddon
On Mon, Aug 31, 2009 at 02:43:43PM +0800, AJ Mercer wrote: see attached screenshot I would like to set the highlighted property If .Net doesn't have the ability, and you can cfexecute, check out programs such as DirDate: http://www.datamystic.com/dirdate.html Just one of many. Cheers Paul

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
You cant get it with JAVA though. You have to read the file headers yourself and try and extract the date values. If you have to set the dateCreated, you could always create a new file with the data from the original file and then delete the original file then rename your new file to the

[cfaussie] CFmail Attaching Document To Mailto Links

2009-08-31 Thread raiola
Hi, Currently I am using cfmail to create an email that attaches selected pdf files that are saved on the server to the email and sends the email and the attachments to the recipients emails address. Please note I am talking about 1 email being sent to 1 recipient at a time so there is no bulk

[cfaussie] Re: CFmail Attaching Document To Mailto Links

2009-08-31 Thread Blair McKenzie
Found this: http://www.ianr.unl.edu/internet/mailto.html. Covers what you can do with the mailto syntax. Anything else you want to do you'll have to do server-side. Blair On Tue, Sep 1, 2009 at 12:37 PM, rai...@ozemail.com.au wrote: Hi, Currently I am using cfmail to create an email that

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Steve Onnis
if you are on a windows machine and on a 32 bit platform i would recommend just using the COM object and accessing the cfscript fso = CreateObject(COM, Scripting.FileSystemObject); f = fso.GetFile([filePath[); /cfscript cfoutput#f.DateCreated#/cfoutput _ From: AJ Mercer

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread Dale Fraser
Arguments in cfexecute can be temperamental. Put it in a bat and just run the bat. Regards Dale Fraser http://dale.fraser.id.au http://learncf.com http://flexcf.com From: cfaussie@googlegroups.com [mailto:cfaus...@googlegroups.com] On Behalf Of AJ Mercer Sent: Tuesday, 1

[cfaussie] Re: set file created date with ColdFusion

2009-08-31 Thread AJ Mercer
I want to SET the DateCreated Is this possible with FileSystemObject? 2009/9/1 Steve Onnis st...@cfcentral.com.au if you are on a windows machine and on a 32 bit platform i would recommend just using the COM object and accessing the cfscript fso = CreateObject(COM,