June 27, 2012 at 5:35 am
Hello Friends
I need to find out excel filet modified date. my task is that based on modification date = todaydate then i have to execute the task.
i am using SSIS scripting and mail notifications.
Thanks in advance
Nitin
July 18, 2012 at 3:32 am
nitin.lokhande (6/27/2012)
Hello FriendsI need to find out excel filet modified date. my task is that based on modification date = todaydate then i have to execute the task.
i am using SSIS scripting and mail notifications.
Thanks in advance
Nitin
Hi,
Only one file?
I would use the execute process task in the control flow that calls a simple powershell script something like this.
$d1 = Get-date
$filepath = Get-ChildItem C:\files\whatever.xls
$d2 = (Get-ItemProperty -Path $filepath).Lastwritetime
if($d1.date -eq $d2.date)
{Exit 0}
else
{Exit 999}
Based on the exit codes you can preceed eg. if it is 0 then success precedence constraint otherwise failure.
August 9, 2012 at 7:32 pm
DECLARE @PathFile nvarchar(256)
CREATE TABLE #FileDetails (
[Alrernate Name] sysname NULL,
[Size] bigint,
[Creation Date] char(8),
[Creation Time] char(6),
[Last Written Date] char(8),
[Last Written Time] char(6),
[Last Accessed Date] char(8),
[Last Accessed Time] char(6),
[Attributes] int NULL
)
INSERT INTO #FileDetails
exec master..xp_getfiledetails @PathFile
_____________
Code for TallyGenerator
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy