0
Q:

photoshop scripting create a folder and save file.jpg

function savefile(tempDimensions,path){

	var splitvalue = path.split("dist");

	path = splitvalue[0]+"src/template_1/Save_File/"

	var f = new Folder(path);
		if(!f.exists)
		{
			f.create();
			$.writeln("create on ");
			$.writeln(path);
		}
		else{
			$.writeln(path);
		}

	var savePath = path+ tempDimensions + ".jpg";
	var saveFile = new File(savePath);
	var saveOptions = new JPEGSaveOptions();
	saveOptions.alphaChannels = false;
	saveOptions.annotations = false;
	saveOptions.embedColorProfile = true;
	saveOptions.layers = true;
	saveOptions.spotColors = false;

	app.activeDocument.saveAs(saveFile, saveOptions, true, Extension.LOWERCASE);

	
}
0

New to Communities?

Join the community