Questions tagged [usb-flash-drive]

A USB flash drive is a data storage device that includes flash memory with an integrated Universal Serial Bus (USB) interface.

USB flash drives are typically removable and rewritable, and physically much smaller than a floppy disk. USB flash drives are often used for the same purposes for which floppy disks or CD-ROMs were used, i.e., for storage, back-up and transfer of computer files. They are smaller, faster, have thousands of times more capacity, and are more durable and reliable because they have no moving parts. wikipedia

127 questions
1
vote
1 answer

Create fake flash drive programmatically

I want to create a fake flash drive programmatically under Mac OSX and Windows. It should behave like a normal drive, that means it should appear in explorer/finder, should be unmountable,.. If someone puts some data in it, it should be handled in…
Razer
  • 7,843
  • 16
  • 55
  • 103
1
vote
1 answer

STM32L072 USB Flash Drive

I am working on an embedded C project in Keil µVision. Part of the project is to make the uC detect and operate as a USB flash drive. I am using a STM32L072 that is connected to external SPI Flash via SPI2 (P/N: SST26VF016B). I can read/write/erase/…
Accentrix
  • 23
  • 6
1
vote
2 answers

Problems with removable storage Hololens 2, unity and xamarin uwp

I'm relatively new to software development for the Hololens 2 and have a pretty big problem I've been messing around with for a long time and I'm slowly running out of ideas. My project looks like this. I've written a Unity application to capture…
1
vote
0 answers

Error formatting USB flash (Read-only file system)

Can anyone help me with formatting USB ? The problem: Error formatting volume: Error wiping device: Command-line `wipefs -a "/dev/sda1"' exited with non-zero exit status 1: wipefs: error: /dev/sda1: probing initialization failed: Read-only file…
Andrei
  • 11
  • 1
1
vote
1 answer

every usb flash drives manufactured by any company have unique serial key or not?

I would like to know, if every usb flash drives manufactured by any company have unique serial key or not? If yes, can we retrieve it using any programming languages.
1
vote
0 answers

keeping the path to file in thumb drive the same accross all os's

I have a typical usb stick and whenever I plug it in to different os's I get different names for the stick In Mac it is called "NO NAME" In windows it is called "E" In Linux it is called "EA94-E242" Is their a way to manually set the name of my…
1
vote
2 answers

install python.exe using a flash drive

I have just acquired a stand alone PC running XP, and I do not want to connect to the internet. I am running python 2.7 on my laptop and was wondering if there was a way to install the python.exe file to a flash drive so I can install python 2.7 on…
Peter Gallant
  • 15
  • 1
  • 4
1
vote
0 answers

UsbInterface null for except 1 device

This way I found solution to recognize if the connected device is storage device. I am following this thesis to understand how the USB Communication with Storage device is done. But the main problem I faced is that For all the connected device…
A_rmas
  • 784
  • 2
  • 10
  • 26
1
vote
2 answers

Relative vs Absolute Paths Java

I have a programming mini competition tomorrow and we will be required to create our program on a flash drive given. The judges won't edit our code so it runs and I am worried that the flash drive letter will change and then my program won't be able…
1
vote
1 answer

Hidden files on flash drive after inserting it into a Mac

I wanted to reformat by flash drive using my program. I use the flash drive on both Mac and Windows. After using the flash drive on Mac I inserted the flash drive in my Windows computer and saw some hidden files and folders called "._.Trashes" and…
nikitpad
  • 66
  • 8
1
vote
0 answers

Trouble with Win 10 writing files to a USB device

I have a USB device with flash memory that looks like a USB FAT16 flash drive to a PC. The device stores VB.net product support software files. As part of the flash update process the device firmware re-formats flash memory and sets the media…
jh0819
  • 31
  • 1
1
vote
0 answers

How do you pip install to a specific version of Anaconda Python stored on a usb?

I have an anaconda package installed on my pc as well as on a usb. I want to add some modules to the anaconda that's on the usb. How do I do this without it installing them onto my pc version?
WillacyMe
  • 562
  • 1
  • 6
  • 25
1
vote
1 answer

VBS how to generate consecutive letters for connected usb flash drives

I have a following problem. I am connecting to a windows 12 usb flash drive through and 12 port hub. I am writing a script where user can just double click it and have all files from a specific folder downloaded to a created folder on desktop. To…
Bart
  • 101
  • 4
  • 11
1
vote
1 answer

Detecting if disk is flash drive

I wanna write program that detects flash drives. But there's a problem. Code: DriveInfo[] allDrives = DriveInfo.GetDrives(); foreach (DriveInfo drive in DriveInfo.GetDrives()) { if (drive.DriveType == DriveType.Removable) { } } It…
Mudzay
  • 71
  • 8
1
vote
3 answers

Console application freeze without debugging mode

I have got simple c# console application, which copies files from flash disk to another flash disk. If I run this app in Visual studio, everything is ok, but if i want to run it through .exe file, app doesnt start and nothing happend. I have tried…
georgesolc
  • 127
  • 1
  • 7
1 2 3
8 9