Rename file using File System Task Editor
Could someone please instruct me on how to use the File System Task Editor to rename a file? I place control on control flow tab, change the operation to rename,from there I am not sure what to do.
July 14th, 2006 12:34am

Create two package variables called FileSource and FileDestination. Assign the path+existing filename to User::FileSource Variable and assign the path+newfilename to User::FileDestination variable. In the FileSystemTask properties - Set Operation to 'Rename File'Set 'IsSDestinationPathVariable'to True and select 'User::FileDestination' variable for 'DestinationVariable' Parameter.Set 'IsSourcePathVariable' to True and select 'User::FileSource' variable for 'Sourcevariable' parameter. When you execute this task - you will find that the source file is renamed as destination file. Thanks,Loonysan
Free Windows Admin Tool Kit Click here and download it now
July 14th, 2006 2:30am

Please post the exact syntax the destination variable.I am challenged by something like:"\\ServerName\DirectoryName\"+DATEPART("yyyy",GETDATE())+DATEPART("mm",GETDATE())+DATEPART("dd",GETDATE())+"_Myfile.txt"
October 31st, 2006 6:53pm

IanO, Are you using EvaluateAsExpression == True and using the above as an expression instead of the variable value?
Free Windows Admin Tool Kit Click here and download it now
October 31st, 2006 6:57pm

A slight aside, but if you are writing this file as part of the SSIS package, and just want to create a date stamp named file, then use the expression on the connection string of your flat file connection, and save the extra step of renaming, just create the file with the correct name to start with. Why are you challenged, the expression itself looked good.
October 31st, 2006 7:01pm

Hi Darren, I am trying to do the same thing as you just described, but when I use an expression like:"C:\Test\Export\CustomFileNamePrefix"+DATEPART("yyyy",GETDATE())+DATEPART("mm",GETDATE())+DATEPART("dd",GETDATE())+".txt"and place it into the ConnectionString property of my existing Flat File Connector, it errors out when run with the statement that the file name was not valid, even though the directory itself exists and is perfectly valid... I get similar messages when placing that expression into a variable string (in a File System Task), and setting it to EvaluateAsExpression == True. What am I missing here please?
Free Windows Admin Tool Kit Click here and download it now
November 4th, 2006 1:52am

Thanks for your reply, Phil.Gets or sets a Boolean that indicates that the variable contains an expression.That is a nice feature however I'm still looking for a place in one of the dialogs to use it. The examples show its use in code.
November 20th, 2006 7:39pm

Thanks for your reply, Darren. My challenge is that when I specify new file name, in the connector, it wants to validate that the file already exists. Furthermore, it wants to see columns before I can click OK. So, how do I tell it to give me a connection but not check it at design time? Hasn't this happened to one of you?Thanks again,IanO
Free Windows Admin Tool Kit Click here and download it now
November 20th, 2006 7:44pm

Often you need to use a resource that does not yet exist, be that a file or table. Generally you do need to create the object to help develop the package, but after that you can set the DelayValidation property to prevent errors at run-time. This means that the task does not validate until immediatly prior to executing, rather than at the begining of the overall package execution as well. It is of course assumed that by the time validation does take place any dependencies do then exist.
November 20th, 2006 8:43pm

I am sorry to ask but where do you create thise package variables?
Free Windows Admin Tool Kit Click here and download it now
May 24th, 2007 6:50pm

Sugo wrote: I am sorry to ask but where do you create thise package variables?In the variables window. View->Other Windows->Variables
May 24th, 2007 7:02pm

Thanks for the help, I am trying to do a similar task to what eveyone else is doing, basically I created a SSIS by going through the data export wizard where the data I selected gets exported to a flat file. My package has a data export task that goes to a flat file export task. Based on what Darren spoke of I also created an expression for the default export file name ""DestinationConnectionFlatFile. Then I edited the Connectionstring in expressions and found that none of the sames would work in the posting becuase of the \ escaping issues. I basically used \\\\servers\\share\\filename+DATEPART("yyyy",GETDATE())+DATEPART("mm",GETDATE())+DATEPART("dd",GETDATE())+".txtto see if this would work for me. I am getting the below error stating that I need to cast the last part of the modification where the date is being added on becuase of data type mismatches. Can someone show me how the expressions should be configured or cast correctly? If I can get one of these working I can get the other date elements coded that I want to use. Expression: "\\\\ServerName\\Share\\filename" + DATEPART("yyyy",GETDATE()) +".txt" Error: TITLE: Expression Builder------------------------------ Expression cannot be evaluated. For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%u00ae+Visual+Studio%u00ae+2005&ProdVer=8.0.50727.867&EvtSrc=Microsoft.DataTransformationServices.Controls.TaskUIFramework.TaskUIFrameworkSR&EvtID=FailToEvaluateExpression&LinkId=20476 ------------------------------ADDITIONAL INFORMATION: Attempt to parse the expression ""\\\\ServerName\\Share\\filename" + cast(DATEPART("yyyy",GETDATE()) as varchar(100)) +".txt"" failed. The expression might contain an invalid token, an incomplete token, or an invalid element. It might not be well-formed, or might be missing part of a required element such as a parenthesis. (Microsoft.DataTransformationServices.Controls) Error w/o the cast: TITLE: Expression Builder------------------------------ Expression cannot be evaluated. For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft%u00ae+Visual+Studio%u00ae+2005&ProdVer=8.0.50727.867&EvtSrc=Microsoft.DataTransformationServices.Controls.TaskUIFramework.TaskUIFrameworkSR&EvtID=FailToEvaluateExpression&LinkId=20476 ------------------------------ADDITIONAL INFORMATION: The data types "DT_WSTR" and "DT_I4" are incompatible for binary operator "+". The operand types could not be implicitly cast into compatible types for the operation. To perform this operation, one or both operands need to be explicitly cast with a cast operator. Attempt to set the result type of binary operation ""\\\\ServerName\\Share\\filename" + DATEPART("yyyy",GETDATE())" failed with error code 0xC0047080. (Microsoft.DataTransformationServices.Controls) Thanks,Wayne
Free Windows Admin Tool Kit Click here and download it now
May 24th, 2007 10:21pm

Not sure if this is the correct way but it seems to work ok. "\\\\ServerName\\Share\\filename" + "_" + ((DT_STR,4,1252) DATEPART("yyyy",GETDATE()))
May 24th, 2007 10:35pm

Sugo wrote: Not sure if this is the correct way but it seems to work ok. "\\\\ServerName\\Share\\filename" + "_" + ((DT_STR,4,1252) DATEPART("yyyy",GETDATE()))Either way would work...
Free Windows Admin Tool Kit Click here and download it now
May 24th, 2007 10:42pm

Phil I am using "D:\\stp\\worldcheck\\archive\\world-check-week.csv" + (DT_WSTR,4)DATEPART("yyyy",GETDATE()) +".CSV" as an expression in a rename file system task and get this error.......cannot convert 'system.string' to 'system.int32' Any ideas
May 31st, 2007 2:20pm

Try Code Snippet "D:\\stp\\worldcheck\\archive\\world-check-week.csv" + ((DT_WSTR,4)DATEPART("yyyy",GETDATE())) +".CSV" Phil's expression worked fine for me, but wrapping that in an extra set of paranthesis should ensure that the conversion happens before the concatenation.
Free Windows Admin Tool Kit Click here and download it now
June 2nd, 2007 4:07am

Hello, I correctly configure the package but i get this error: Code Snippet Failed to lock variable "xxx" for read access with error 0xC0010001 "The variable cannot be found. This occurs when an attempt is made to retrieve a variable from the Variables collection on a container during execution of the package, and the variable is not there. The variable name may have changed or the variable is not being created.". Do you know how ti unlock the varaiable? Thanks
July 2nd, 2007 12:47pm

What is the scope of the variable? The error message indicates that the variable can't be found.
Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2007 5:18pm

Double check the variable name is correct, and remember they are case sensitive.
July 6th, 2007 10:34am

Hi, Please could you explain to me how I can add a date stamp to my out put flat file. You've mention that I can use an expression within the connection string of the flat file. Would that expression need to be within File Name path specified ? So for example the path for my file is eg; C:\Documents and Settings\emma hardie\Desktop\POLines.txt If I want to add a datetime stamp to this text file every time it generates what do I need to do ? Your help would be appreciated Em
Free Windows Admin Tool Kit Click here and download it now
September 26th, 2007 8:01pm

Go to the properties of the flat file connection manager, 'Expressions' property; and add an expression to the 'Connection string' property. The expression should look like the expressions given by Phil or John in the posts above.
September 26th, 2007 8:32pm

This worked for me:@[FileDir] + "\\" + @[FileDest] + "_" + (DT_WSTR,4)DatePart("yyyy", GetDate()) + "-" + RIGHT("0" + (DT_WSTR,2)DatePart("mm", GetDate()), 2) + "-" + RIGHT("0" + (DT_WSTR,2)DatePart("dd", GetDate()), 2) + "_" + RIGHT("0" + (DT_WSTR,2)DatePart("hh", GetDate()), 2) + "-" + RIGHT("0" + (DT_WSTR,2)DatePart("mi", GetDate()), 2) + ".csv"
Free Windows Admin Tool Kit Click here and download it now
August 20th, 2009 3:06pm

Thanks. Requirement Details: I have two folders Name : Excel_Source & Excel_Target. In Excel_Source, I have Excel file Name Country_Name. I have created a package to move this excel file Country_Name from Folder Excel_Source to Excel_Target folder and then want to change Excel File name from Country_Name to A, B or C. This value A, B or C is coming from database and it has been holding by Variable name V_File_ Name. Here Is the Solution: Step1: Create a template excel file (Country_Name.xls) in C:\ Excel_Source\ folder Step2: Create 3 variables (string type and package scoped) named : V_Target with value as : C:\ Excel_Target\ (folder where new file is to be created) V_Target_File with "Evaluate as Expression" property set as TRUE. then set the expression as:[ " C:\ Excel_Target \" + @V_File_ Name + ".xls" or (“.xlsx”) ]OR [@ V_Target + @V_File_ Name + ".xls"] V_Source_File with value as : C:\ Excel_Source\ Country_Name.xls Step3: Take one File System Task and open the File System Task editor. Select Operation as "Rename File" Set IsDestination path variable to TRUE and select V_Target_File from drop down box as variable. Keep IsSourcePath variable as TRUE and select V_Source_File from drop down box as variable. Or Follow this link: http://beyondrelational.com/blogs/niteshrai/archive/2010/04/05/creating-a-file-using-ssis-file-system-task.aspx Thanks Shiven:)
June 20th, 2011 4:59pm

Thanks. It really helped me.Thanks Shiven:)
Free Windows Admin Tool Kit Click here and download it now
June 20th, 2011 6:59pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics