• Do you want to try this one:

    CREATE TABLE #tmp (strData VARCHAR(1000))

    INSERT INTO #tmp EXEC xp_cmdshell 'dir c:\myFile'

    SELECT * FROM #tmp WHERE strData LIKE '%/%/%'

    DROP TABLE #tmp