DriveApp
با مجموعهها، منظم بمانید
ذخیره و دستهبندی محتوا براساس اولویتهای شما.
یک فایل Drive جدید ایجاد کنید
function createFileOnDrive(name, content) {
// Create an HTML file with the name and content provided
DriveApp.createFile(name, content, MimeType.HTML);
}
یک فایل از Drive دریافت کنید
function getFileFromDrive(name) {
const files = DriveApp.getFilesByName(name);
if (files.hasNext()) {
return files.next();
} else {
console.log(`No file found with name ${name}.`);
}
}
فهرست فایلهای درایو کاربر
function listAllFiles() {
// Log the name of every file in the user's Drive.
const files = DriveApp.getFiles();
for (const file of files) {
console.log(file.getName());
}
}
لیست فایل های موجود در یک پوشه
function listAllFilesInFolder(folderId) {
// Log the name of every file in the folder.
const files = DriveApp.getFolderById(folderId).getFiles();
for (const file of files) {
console.log(file.getName());
}
}
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2024-11-11 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","easyToUnderstand","thumb-up"],["مشکلم را برطرف کرد","solvedMyProblem","thumb-up"],["غیره","otherUp","thumb-up"]],[["اطلاعاتی که نیاز دارم وجود ندارد","missingTheInformationINeed","thumb-down"],["بیشازحد پیچیده/ مراحل بسیار زیاد","tooComplicatedTooManySteps","thumb-down"],["قدیمی","outOfDate","thumb-down"],["مشکل ترجمه","translationIssue","thumb-down"],["مشکل کد / نمونهها","samplesCodeIssue","thumb-down"],["غیره","otherDown","thumb-down"]],["تاریخ آخرین بهروزرسانی 2024-11-11 بهوقت ساعت هماهنگ جهانی."],[[["This script demonstrates how to create new HTML files in Google Drive using provided names and content with `DriveApp.createFile()`."],["It showcases retrieving specific files from Google Drive by name using `DriveApp.getFilesByName()` and handling cases where the file isn't found."],["The script provides functionality to list all files in a user's Google Drive or within a specific folder using `DriveApp.getFiles()` and `DriveApp.getFolderById()` respectively, outputting file names to the console."]]],[]]