Questions tagged [fileshare]

252 questions
4
votes
1 answer

How to remove all files from Azure File Share?

How to remove all files from Azure File Share? There is no possibility of doing it in GUI also Microsoft Azure File Explorer fails due to proxy between me and the web. Is there any AZ command or a snippet that clears the given fileshare in Azure?
Yoda
  • 17,363
  • 67
  • 204
  • 344
4
votes
1 answer

node.js require("fs") gives empty object

In my Ionic project, when I run a simple test code for require('fs'): const fs = require('fs'); console.log(fs) //empty object {} if(!fs.existsSync('./testFolder')){ console.log('Folder not found'); } else{ console.log('Folder…
Huiting
  • 1,368
  • 7
  • 24
4
votes
1 answer

Mini server implementation in Objective C

I'm trying to implement a little server service in order to upload files via web browser to my iOS app. An example of this feature is implemented in the following app: http://itunes.apple.com/uy/app/files-document-reader/id294150896?mt=8 seems to be…
Omer
  • 5,470
  • 8
  • 39
  • 64
4
votes
2 answers

Unable to share image using DataTransferManager in Windows 10

Requirement: Share a text and image using DataTransferManager into Facebook in Windows 10. Problem: Unable to share image. Below shown is the code I used, private async void DataTransferManager_DataRequested(DataTransferManager sender,…
Bells
  • 1,465
  • 1
  • 19
  • 30
4
votes
1 answer

C# Programmatic Remote Folder / File Authentication In Non-Domain Windows Environment

I need to be able to programmatically authenticate when trying to read and write files on a remote computer in a non-domain environment. When you type a command into the Windows RUN prompt that is similar to \\targetComputer\C$\targetFolder or…
blitz_jones
  • 1,048
  • 2
  • 10
  • 22
3
votes
2 answers

How to create ShareFileClient without specifying it's size to be able to stream data to it?

I would like to create new blob on FileShareClient in Azure FileShare resource with .NET api. I cannot specify it's size in the beginning (because it will be filled with data later eg. csv file filled with lines, up to couple of GBs). I was trying…
Jack n J
  • 206
  • 3
  • 14
3
votes
3 answers

Azure ARM Template DependentOn FileShare

I need to create via ARM template storage account --> File share --> Container with mounted fileshare. The dependency is: file share depends on storage account container depends on file share How to get ReferenceId of Fileshare? I have the…
3
votes
1 answer

EPiServer shared VPP folders

This might be at daft question but i've nerver done it before... We are a few developers on the same project with local development environments and now we want to set up shared VPP folders on a external server. I have created a VPP folder on the…
Andy
  • 503
  • 3
  • 15
  • 29
3
votes
1 answer

Uploading all Sub-Directories and Files to an Azure Storage Account File Share Using VB.NET

How can I upload all files and sub-directories within a root directory on my PC, to my Azure Storage Account File Share (files, not blobs)? The idea being that I want to effectively "clone" all files and directory structure that exist on my PC or on…
3
votes
1 answer

Azure File Share ListFilesAndDirectoriesSegmentedAsync() Fails Authentication

I am using the c#.net api to work with azure file storage but cannot successfully list all files in a fileshare. My code errors with: Microsoft.WindowsAzure.Storage: Server failed to authenticate the request. Make sure the value of Authorization…
Dan Young
  • 137
  • 1
  • 2
  • 12
3
votes
1 answer

iPhone : How to show only a particular folder inside my app's Documents directory in iTunes

I want to show only a particular folder inside my app's Documents directory when seen in iTunes. All the other folders and my database, which are inside my app's Documents directory should be hidden from the user when he tries file sharing in my…
Meghan
  • 1,004
  • 1
  • 15
  • 34
3
votes
3 answers

Download Azure File Share Documents Programmatically

I am on a project where the ability to download documents (.pdf's) from an Azure File Storage account would be useful. Is this possible? I am currently only able to output the directories and directory's file content paths as strings, but unable to…
Christopher
  • 55
  • 1
  • 7
3
votes
2 answers

Moving files on network shares

I want to automate many of my daily tasks via powershell. One process that we have is imaging desktops after hours. Once this operation is complete, the image files need to be moved off the server hard drives to a network drive. I'm writing an…
deweycooter
  • 82
  • 1
  • 2
  • 9
3
votes
1 answer

Azure WebJobs with Storage File Share

How can I use a FileTrigger to get my uploaded file? Configuration code: public class Program { // Please set the following connection strings in app.config for this WebJob to run: // AzureWebJobsDashboard and AzureWebJobsStorage public…
3
votes
1 answer

Nant - Check if a remote share already exists

We are using Nant to deploy an application and need to ensure that a share is created during the process. We use psexec and net share to create the share but this fails and stops Nant if the share already exists. Is there any way to detect that a…
Shevek
  • 3,869
  • 5
  • 43
  • 63
1
2
3
16 17