creating directories in script? Pete Siamidis wrote on 6/9/2011, 5:51 PM Is it possible to create directories in vegas script? Right now my render script spits out all the video files into one folder, but it would be cool if the script could create directories and put the video files in specific places. Back to post
Comments jetdv wrote on 6/10/2011, 6:09 AM Sure. Just call the CreateDirectory function that is part of .Net/C#: Directory.CreateDirectory(directorypathstring); Pete Siamidis wrote on 6/11/2011, 11:34 AM Is it possible in javascript? My current script happens to be in that language, if not I guess I can convert it to c#. Pete Siamidis wrote on 6/11/2011, 5:36 PM Hey never mind, tried it and the same thing works in javascript. Thanks! 1