Questions tagged [file-sharing]

File sharing is the practice of distributing or providing access to digital media, such as computer programs, multimedia (audio, images and video), documents or electronic books.

598 questions
2
votes
1 answer

How should I share Files using WiFi Direct to another android device?? - Salut and LoganSquare

** SITUATION IS - ** I am creating an application that shares files between android devices. I use Salut as a WiFi Direct Wrapper. Salut uses LoganSquare for sharing data between peers connected via WiFi Direct. My Objective : How should I…
2
votes
1 answer

Share Existing Host Directory with Docker Container?

Docker allows a directory to be shared among other containers with the -v option. But it shadows any existing directory on the host. How can a host directory be made visible to the docker instance? For example, this creates a mountpoint at…
automorphic
  • 680
  • 7
  • 18
2
votes
3 answers

Using XCode to access app data

I am using the Device tab in Xcode to view the content of my app. Here is what I see: The app has iTunes file sharing enabled: However I am unable to see the App in iTunes (under my Apps) even after synchronising the phone. I am wondering if there…
mm24
  • 9,280
  • 12
  • 75
  • 170
2
votes
1 answer

Is it possible to work with git or something similar and not need to have the whole repository saved onto computer?

Looking for a way to file share with version control between a lot of people on the same network. We are looking at using git, but we are wondering if there is any way of not having to download and contain the whole repository on your computer. The…
D.Attinik
  • 21
  • 1
2
votes
0 answers

How to allow user to upload attachments in iOS application

In case of Android when I want to send or attach a document such as a pdf or doc from my application I can easily access all the files in the external storage and share or attach. But since iOS follows a sandbox approach as well as there is no…
Avinash Sharma
  • 665
  • 1
  • 7
  • 23
2
votes
2 answers

Allow iPhone application to sync with iTunes

In the Apps tab of iTunes, there is a 'File Sharing' section with a list of apps that can synchronize their documents with your computer. What do you need to do to tell iTunes to sync your apps Documents folder?
Paul Alexander
  • 31,970
  • 14
  • 96
  • 151
2
votes
2 answers

Android: How to share images from package directory?

I want to share multiple image from application package directory. My files locate in following path as like. /data/data/com.example. Now i can get images path. But not attach any images to sharing application. as like whats app, Message and…
Ravi Vaghela
  • 3,420
  • 2
  • 23
  • 51
2
votes
1 answer

Create new Permission for file Uploaded through Google Drive API

My application is uploading file to GoogleDrive and then my application opens file for editing into GoogleDocs. Users of my application are using Google apps and from their admin console they have set the link sharing default value to "On - Anyone…
Vaibhav Jain
  • 59
  • 1
  • 8
2
votes
0 answers

IIS Error when asp.net access file sharing

I'm getting error after I deployed my ASP website. The function of my website is a file manager that access file in a shared network within intranet. When I ran it in visual studio, "it works" but after I deployed it to IIS, it can't access file in…
Fananda Herda
  • 27
  • 1
  • 3
2
votes
1 answer

File Sharing application members-to-members

guys Do you know any available PHP third party application or script which allows all my registered members to share their files to other members? I'm thinking similar with this one (My concern on that are there is no support doc and it seems the…
dev eph
  • 21
  • 3
2
votes
1 answer

Process.start on network drive, ask for authentication

Considering this code: Process process = new Process(); process.StartInfo.FileName = "explorer"; process.StartInfo.Arguments = "\\some_network_host\path"; process.Start(); I would like to connect to a shared resource and open the…
2
votes
1 answer

Accessing file share from Azure Website

We have a web application that consists of three main parts: Web server running ASP.NET 4.5 Web site; Database server hosting SQL Server 2012; Another server hosting some Legacy App used by back office; Relations between parts are as…
Kaspars Ozols
  • 6,967
  • 1
  • 20
  • 33
2
votes
1 answer

Should I upload files to Amazon S3 from mobile devices or from my server?

I have Amazon S3 as my file storage server and EC2 instances as my application logic server. Now my app needs to upload some files which need necessary processing. I can think of two ways to do this: Upload the file directly from mobile devices and…
Edmond
  • 614
  • 2
  • 11
  • 26
2
votes
1 answer

Sharing data from two text file using by 2 application at same time

I have two WPF application i use the same text file in two applications when i want file to write from one application and read the data written from another application . but i can't do it because the two applications use the same file at same time…
MARK
  • 336
  • 1
  • 6
  • 23
2
votes
1 answer

Using the Google Drive iOS API, how can I create a folder AND share it?

Using the Google Drive iOS API, how can I create a folder AND share it? GTLDriveFile * folder = [GTLDriveFile object]; folder.title = @"Test"; folder.mimeType = @"application/vnd.google-apps.folder"; // ???
user3246173
  • 488
  • 6
  • 18