Sample code for 30+ languages & platforms
SQL Server

Get Create Date/Time of Files in a Remote Directory

Gets the creation date/times of files in a remote FTP directory.

9.5 Note: Linux and MacOSX filesystems do not keep a file's creation date/time. If the FTP server is running on such as system, then the Chilkat methods to return a creation date/time will instead return a last-modified date/time.

Also Note: FTP servers have differing capabilities. The "MLSD" command is not supported by all FTP servers. For such servers, only the last-modified date/time is returned per file or directory. Also, the precision of the date/time can vary.

Also, even if MLSD is supported, the server may not return "create" times. A sample MLSD response without "create" times is shown here:

MLSD
150 Opening data channel for directory listing of "/AAWorkarea"

(DirListingCharset: utf-8)
listing size = 1258
type=file;modify=20170915140700;size=1224; 2012-05-12T12_25_23.1481154Z.txt
type=file;modify=20170915140700;size=1297; 2012-05-12T12_25_27.2577797Z.txt
type=dir;modify=20180425163206; chilkat-php-5.6-win32
type=file;modify=20180425163146;size=3768683; chilkat-php-5.6-win32.zip
type=file;modify=20180222182447;size=9487872; chilkat_electron18_win32.tar
type=file;modify=20180222182447;size=3612565; chilkat_electron18_win32.tgz
type=dir;modify=20180903155724; DotNet4_CSharp_Sample
type=file;modify=20180227230517;size=469; meteorNotes.txt
type=dir;modify=20180227225933; my_cool_app
type=dir;modify=20180222183126; package
type=file;modify=20180214223538;size=9487872; package.tar
type=file;modify=20180214223538;size=3612484; package.tgz
type=dir;modify=20180312233811; phpAx
type=dir;modify=20170526002148; smartconnect_terminalemulatorR1.0.0.1
type=file;modify=20180503225204;size=21900478; smartconnect_terminalemulatorR1.0.0.1.zip
type=file;modify=20180503225117;size=1152; smartPay.txt
type=dir;modify=20180514140507; testVc10
type=dir;modify=20180612143825; thinlaunch
type=dir;modify=20180925173446; WindowsFormsApplication1
226 Successfully transferred "/AAWorkarea"

The original creation time of a file is only available if the "create" fact is returned in the MLSD response. See RFC 3659 - Format of Facts / Standard Facts

Chilkat SQL Server Downloads

SQL Server
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @sTmp1 nvarchar(4000)
    DECLARE @success int
    SELECT @success = 0

    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @ftp int
    EXEC @hr = sp_OACreate 'Chilkat.Ftp2', @ftp OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    EXEC sp_OASetProperty @ftp, 'Hostname', 'ftp.example.com'
    EXEC sp_OASetProperty @ftp, 'Username', 'myLogin'
    EXEC sp_OASetProperty @ftp, 'Password', 'myPassword'
    -- Use explicit TLS
    EXEC sp_OASetProperty @ftp, 'AuthTls', 1
    EXEC sp_OASetProperty @ftp, 'Port', 21

    -- For debugging, turn on session logging so we can examine what is sent by the server.
    EXEC sp_OASetProperty @ftp, 'KeepSessionLog', 1

    -- Connect and login to the FTP server.
    EXEC sp_OAMethod @ftp, 'Connect', @success OUT
    IF @success = 0
      BEGIN
        EXEC sp_OAGetProperty @ftp, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @ftp
        RETURN
      END

    EXEC sp_OAMethod @ftp, 'ChangeRemoteDir', @success OUT, 'AAWorkarea'

    EXEC sp_OASetProperty @ftp, 'ListPattern', '*.*'
    DECLARE @n int
    EXEC sp_OAMethod @ftp, 'GetDirCount', @n OUT

    PRINT 'n = ' + @n

    DECLARE @i int
    SELECT @i = 0
    WHILE @i < @n
      BEGIN
        -- Get the original creation date/time as a CkDateTime object.	

        EXEC sp_OAMethod @ftp, 'GetFilename', @sTmp0 OUT, @i

        EXEC sp_OAMethod @ftp, 'GetCreateTimeStr', @sTmp1 OUT, @i
        PRINT @i + ': ' + @sTmp0 + ', ' + @sTmp1

        SELECT @i = @i + 1
      END

    -- Show the session log so we can see the details of the FTP directory listing sent by the server.
    -- This tells us what information is available.  Some FTP servers provide better and more accurate information
    -- than others.


    PRINT '---- Session Log ----'
    EXEC sp_OAGetProperty @ftp, 'SessionLog', @sTmp0 OUT
    PRINT @sTmp0

    EXEC sp_OAMethod @ftp, 'Disconnect', @success OUT

    EXEC @hr = sp_OADestroy @ftp


END
GO