دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
دسته بندی: برنامه نویسی: زبان های برنامه نویسی ویرایش: نویسندگان: Eric Bidelman سری: ISBN (شابک) : 1449309453, 9781449309459 ناشر: O'Reilly Media سال نشر: 2011 تعداد صفحات: 0 زبان: English فرمت فایل : EPUB (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) حجم فایل: 658 کیلوبایت
در صورت تبدیل فایل کتاب Using the HTML5 Filesystem API به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب با استفاده از HTML5 Filesystem API نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
چندین گزینه ذخیره سازی سمت سرویس گیرنده برای برنامه های کاربردی وب در دسترس است، اما یکی از زمینه هایی که تاکنون وجود نداشته است، I/O فایل است – توانایی سازماندهی داده های باینری در یک سلسله مراتب واقعی از پوشه ها. این با ظهور HTML5 تغییر کرده است. با استفاده از این کتاب، شما یاد خواهید گرفت که چگونه برنامه های خود را با یک سیستم فایل ارائه کنید که به آنها امکان می دهد فایل ها و پوشه ها را در یک بخش sandbox در سیستم فایل محلی کاربر ایجاد، خواندن و نوشتن کنند. نویسنده اریک بیدلمن، مهندس برنامهنویس ارشد در تیم Google Chrome، چندین تکنیک و نمونههای کد کامل را برای کار با API HTML5 Filesystem ارائه میدهد. عملیات رایج برای کار با فایلها و فهرستها را بیاموزید با موارد استفاده از ذخیرهسازی HTML5 و ملاحظات امنیتی آشنا شوید. گزینه های ذخیره سازی موجود، از جمله موقت، دائمی و نامحدود نوشتن متن یا افزودن داده به یک فایل کاربری موجود با دسترسی به هارد دیسک کاربر، فایل ها را به برنامه خود وارد کنید دریافت تکنیک هایی برای استفاده از فایل با سیستم فایل، حباب یا URL های داده استفاده از همگام نسخه HTML5 Filesystem API در زمینه Web Worker
Several client-side storage options are available to web applications, but one area that's been lacking until now is file I/O—the ability to organize binary data into a true hierarchy of folders. That has changed with the advent of HTML5. With this book, you'll learn how to provide your applications with a file system that enables them to create, read, and write files and folders in a sandboxed section of the user's local filesystem. Author Eric Bidelman, a Senior Developer Programs Engineer on the Google Chrome team, provides several techniques and complete code examples for working with the HTML5 Filesystem API.Learn common operations for working with files and directories Become familiar with HTML5's storage use cases and security considerations Understand the storage options available, including temporary, persistent, and unlimited Write text or append data to an existing user file Import files into your application by accessing a user's hard drive Get techniques for using a file with filesystem, blob, or data URLs Use the synchronous version of the HTML5 Filesystem API within a Web Worker context
Table of Contents......Page 7
Using Code Examples......Page 9
How to Contact Us......Page 10
Use Cases......Page 13
A Cautionary Tale......Page 15
Storage Types......Page 17
Persistent Storage......Page 18
Unlimited Storage......Page 19
Requesting More Storage......Page 20
Checking Current Usage......Page 21
Opening a Filesystem......Page 23
Handling Errors......Page 25
The FileEntry......Page 27
Creating a File......Page 28
Reading a File by Name......Page 29
Writing to a File......Page 30
Appending Data to a File......Page 31
Importing Files......Page 32
Using ......Page 33
Using HTML5 Drag and Drop......Page 34
Using XMLHttpRequest......Page 36
Using Copy and Paste......Page 39
Removing Files......Page 40
The DirectoryEntry......Page 43
Creating Directories......Page 44
Subdirectories......Page 45
Reading the Contents of a Directory......Page 46
Recursively Removing a Directory......Page 48
Copying a File or Directory......Page 49
Moving a File or Directory......Page 51
Renaming a File or Directory......Page 52
Filesystem URLs......Page 55
Blob URLs......Page 57
Data URLs......Page 61
Summary......Page 62
Opening a Filesystem......Page 65
Examples......Page 66
Fetching All Entries in the Filesystem......Page 67
Downloading Files Using XHR2......Page 68