我在WinJS中构建一个metro应用程序,它在我的硬盘驱动器的临时文件夹中创建一个图像(C:\ users \ temp ...)
但是我想把我的照片移到另一个目录,我该怎么做? 提前感谢您的支持
我也想知道如何使用WinJS或Javascript删除它们
感谢您的支持
代码
function imageCapture() {
//Invoke the camera capture UI for snapping a photo
var captureUI = new _capture.CameraCaptureUI();
captureUI.photoSettings.format = _capture.CameraCaptureUIPhotoFormat.jpeg;
captureUI.captureFileAsync(_capture.CameraCaptureUIMode.photo)
.then(function (capturedItem) {
if (capturedItem) {
console.log("image path: " + capturedItem.path);
//Creates the photo
var photoBlobUrl = URL.createObjectURL(capturedItem, { oneTimeOnly: true });
}
});
}