ড্রাইভ অ্যাপ
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি নতুন ড্রাইভ ফাইল তৈরি করুন
function createFileOnDrive(name, content) { // Create an HTML file with the name and content provided DriveApp.createFile(name, content, MimeType.HTML); }
ড্রাইভ থেকে একটি ফাইল পান
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 সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-08-21 UTC-তে শেষবার আপডেট করা হয়েছে।
[[["সহজে বোঝা যায়","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"]],["2025-08-21 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eThis script demonstrates how to create new HTML files in Google Drive using provided names and content with \u003ccode\u003eDriveApp.createFile()\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt showcases retrieving specific files from Google Drive by name using \u003ccode\u003eDriveApp.getFilesByName()\u003c/code\u003e and handling cases where the file isn't found.\u003c/p\u003e\n"],["\u003cp\u003eThe script provides functionality to list all files in a user's Google Drive or within a specific folder using \u003ccode\u003eDriveApp.getFiles()\u003c/code\u003e and \u003ccode\u003eDriveApp.getFolderById()\u003c/code\u003e respectively, outputting file names to the console.\u003c/p\u003e\n"]]],[],null,["# DriveApp\n\nCreate a new Drive file\n-----------------------\n\n```text\nfunction createFileOnDrive(name, content) {\n // Create an HTML file with the name and content provided\n DriveApp.createFile(name, content, MimeType.HTML);\n}\n```\n\nGet a file from Drive\n---------------------\n\n```gdscript\nfunction getFileFromDrive(name) {\n const files = DriveApp.getFilesByName(name);\n if (files.hasNext()) {\n return files.next();\n } else {\n console.log(`No file found with name ${name}.`);\n }\n}\n```\n\nList of files on a user's Drive\n-------------------------------\n\n```gdscript\nfunction listAllFiles() {\n // Log the name of every file in the user's Drive.\n const files = DriveApp.getFiles();\n for (const file of files) {\n console.log(file.getName());\n }\n}\n```\n\nList of files in a folder\n-------------------------\n\n```gdscript\nfunction listAllFilesInFolder(folderId) {\n // Log the name of every file in the folder.\n const files = DriveApp.getFolderById(folderId).getFiles();\n for (const file of files) {\n console.log(file.getName());\n }\n}\n```"]]