script python declare @ExportPath varchar(max)='\\192.168.7.9\Import\8' EXEC sp_execute_external_script @language =N'Python', @script=N' import os d = os.path.isdir(ExportFilePath) print(d)' ,@params = N'@ExportFilePath NVARCHAR(MAX)' ,@ExportFilePath = @ExportPath
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)