Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Phonegap Essentials

You're reading from   Phonegap Essentials Use PhoneGap to build cross-platform mobile applications quickly and efficiently

Arrow left icon
Product type Paperback
Published in Sep 2015
Publisher
ISBN-13 9781785284687
Length 178 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Ivan Turkovic Ivan Turkovic
Author Profile Icon Ivan Turkovic
Ivan Turkovic
Arrow right icon
View More author details
Toc

File Transfer


The File Transfer plugin enables you to download uploaded files from your server. It is used together with media content capability to upload to your server without interrupting your main thread. File Transfer provides a way to upload HTTP multi-part POST requests.

To install the plugin, you need to run the following command:

phonegap plugin add cordova-plugin-file-transfer

The File Transfer plugin will make available two global objects—FileTransfer and FileUploadOptions—that will be available after the deviceready event has been fired. We are going to describe them in detail in the following paragraphs:

document.addEventListener("deviceready", function() {
   console.log(FileTransfer);
}, false);

Examples for this plugin need to have the server to communicate with. Since the scope of this book is limited to learning PhoneGap essentials, I am going to show you how it works with real code, however, since you do not have a running server, you cannot run this on your devices.

The...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image