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
1
vote
1 answer

How to share a recorded video programmatically?

Well guys, I'm new at programming, I've tried some ways, but I was not able to achieve it. I have these two paths, how can I open the share options to send this file? I/ExternalStorage: Scanned…
1
vote
0 answers

Is there any way to use OS users in a self-hosted file-sharing platform?

I use ownCloud to self-hosted the servers and I want to use OS users to log in to the ownCloud web UI so everyone who has access to the servers will have access to the ownCloud web UI without creating a new user in Owncloud. If it's impossible, is…
Lexel
  • 19
  • 2
1
vote
1 answer

Share a folder programmatically

I have an OS X application that lets the user select any folder. I need to somehow share that selected folder on the network. I have been doing research for a while on how to share a folder using Objective-C; nothing helped.
User
  • 11
  • 3
1
vote
0 answers

How to do a decentralized blockchain filesharing p2p program?

Hello everyone thanks for reading this! I'm not fluent in this language, sorry. I'm searching on how to make file-sharing p2p decentralized system using blockchain. I watched that few tutorial avalaible on the internet but i don't finded nothing! I…
ArraffaFile
  • 98
  • 10
1
vote
0 answers

How can I move the entire home folder and sub folders and files from an account to another account in the same Synology NAS?

I made a mistake putting files in the admin home folder. I want to move that info to another account (non admin user). How can I move the entire home folder and sub folders and files from the admin account to another account (non admin) in the same…
user3084383
  • 183
  • 9
1
vote
1 answer

Failed to find configured root that contains /storage/708A-1A0F/-

I am trying to send a list of files using tcp socket but i get this file provider error. please help if anyone can. Thanks Caused by: java.lang.IllegalArgumentException: Failed to find configured root that contains >/storage/708A-1A0F/- CHAIN YE…
1
vote
0 answers

How to get list of shared folders in Swift

I need to detect in my MacOS app, that dropped file on a canvas belongs to shared folder. The only way which I have found was calling a command inside terminal: sharing -l so I have called such command in swift and parsed output. This solution…
SeRgI
  • 141
  • 1
  • 8
1
vote
0 answers

Python sockets continuous jpg file sharing

I am using Python Sockets with one client and one server. I am writing a program for the client to continuously send compressed jpg files to the server. Currently I am only able to send the first compressed file. After that the program just sits. I…
cnourrcier
  • 11
  • 2
1
vote
1 answer

how can I connect solidity smart contract to an android application?

I currently work on the project which name "android document sharing using blockchain" I just want to know about how can I connect smart contract to connect my android android application.
1
vote
1 answer

Serve Downloads from Directory using Angular

I have a list of documents in the same folder I'm serving my Angular application from. I want to make a webpage that shows a list of the documents, and links to download individual ones. How would I accomplish this?
Tim Morris
  • 385
  • 1
  • 3
  • 11
1
vote
1 answer

Flutter iOS File Sharing - Cannot Open Shared File

I am building a flutter app for iOS. I have created a file type that my app and another app can share back and forth. I am using the flutter receive_sharing_intent library to achieve this. To test it, I made all the necessary changes to my…
mac
  • 485
  • 1
  • 6
  • 29
1
vote
2 answers

File sync api for objective c

I am trying to develop an application for file sync on the cloud.I came across the DropboxSDK which is fairly simple.I've kept this as an option for my app.I found another one called Box .Net, but its a bit complicated.Can anyone let me know what…
Amresh Kumar
  • 1,445
  • 17
  • 30
1
vote
0 answers

Docker + React App: how to use in the Frontend side, files saved in the API (server) side folder?

So, I'm stuck in an issue related to using files stored in a server and not able to display them in the frontend. My project is: React + Redux using Docker The React app is full, i.e., there's an API folder for the backend (react/redux), a CLIENT…
Luis Souza
  • 11
  • 3
1
vote
1 answer

How to build a p2p connection between 2 devices like torrent

I want to build a system with 2 or more devices. Devices in the system can send files to each other using p2p, not through the server (files to be sent are not uploaded to the server) To clear, suppose my system has 2 PCs placed in 2 different…
Do Trung Duc
  • 396
  • 3
  • 13
1
vote
1 answer

Creating & sharing a simple text file in Android 10

I've had some trouble creating a function that writes a large chunk of raw data to a text file, and then shares that text file to be sent by email/whatsapp. Since Android 10 it's no longer possible to use Environment.getExternalStorageDir() due to…