A block of arbitrary information, or resource for storing information, accessible by the string-based name or path. Files are available to computer programs and are usually based on some kind of persistent storage.
0
votes
0answers
6 views
Delete a symlink
I tried to uninstall an application but I can't empty the trash.
If I look in the application folder, I found a single file that is the problem.
So I tried to delete it via Terminal but the following ...
1
vote
1answer
8 views
Change file CHMOD when uploading with this code
<?php
class File_Streamer
{
private $fileName;
private $contentLength;
private $path;
public function __construct()
{
if ...
0
votes
0answers
5 views
Can't view files structure/directory on this website
I used to be able to view the file structure like this link: http://www.umocss.org/Library/
Does anyone know why I can't view it on this URL? http://www.umocss.org/files/
I am able to access the ...
0
votes
0answers
3 views
TypeError: cannot read property ' fileOpener ' of undefined
I am doing phonegap project for android, and I am using a plugin fileOpener to open a local pdf file, and get the error.
My FileOpener.java code is as below:
package com.phonegap.plugins.fileopener;
...
0
votes
1answer
22 views
Renaming a file in php with the date at the end
I'm trying to rename a file with a specific date attached to the end of the file name. For example: vertices_dly_jrnl_automation_25_June_2013.csv.
The date must be 1 day prior to the current date.
...
0
votes
0answers
4 views
DOS command to match files in directories and copy missing files
I want to match the files from a Source FONT directory with a Destination FONT directory, then copy any missing files from the Source to Destination directory.
-5
votes
0answers
33 views
Android: how to copy a file [duplicate]
how can I copy a file in Android's Java from /sdcard/data/example.dat to /sdcard/example.txt (it's just to demonstrate it) using the java.io.File class?
Don't tell me this:
...
1
vote
0answers
15 views
Azure file access failure (ERROR 1/Invalid MS-DOS function) from a VHD mounted from the blob
After scaling to 500 VMs, some of them (about 20 last time I tried) fail to start properly because their startup script cannot read a file from the mounted VHD. The VHD is mounted from the blob, and ...
1
vote
1answer
46 views
check if file is open with lsof
I'm using linux mint 13 xfce and I have a file named named wv.gold that I'm trying to check in bash if it's open by any program (for instance, I opened it in sublime-text and gedit)
In many forums ...
0
votes
0answers
9 views
concurrent file reading php fopen
I'm currently developing a web module for an existing system, It's required that i open a .DBF file, the file is part of the system and is being concurrently written using a Visual fox pro ...
-4
votes
1answer
25 views
What is a config file? [on hold]
I'm a product manager for an iPhone and iPad application. We release our applications to the App Store but once our developers were able to make a switch to our config file and implement a new ...
0
votes
0answers
17 views
How to rename video file in android
I try to rename video file with this code:
File from = new File(outputFileName);
File to = new File(mediaStorageDir,mediaFile);
from.renameTo(to);
when
outputFileName = ...
0
votes
1answer
9 views
How to read .db file in Blackberry
I am new at blackberry, I want to read a .db file, and extract its content. So could any one give me sample code of reading .db file.
Thanks.
0
votes
1answer
36 views
File not found exception with external files
Hi i have made a small program that reads a config file. This file is stored outside the actual jar file. On the same level as the jarfile actually.
When i start my program from a commandline in the ...
0
votes
3answers
36 views
Server not accepting big files
I try to upload big (>~1.5MB) images to my website (free hosting) using PHP but the file dont appear on the server.
Sometimes I get Error 1 (Max size exceeded), and sometimes it tells me that ...