A computer file is a block of arbitrary information, or resource for storing information, which is available to a computer program and is usually based on some kind of durable storage. A file is durable in the sense that it remains available for programs to use after the current program has ...

learn more… | top users | synonyms (1)

-1
votes
0answers
3 views

Prevent ClickOnce To Download Application Data Files And Use Them Where They Are

I Have a Program That Install Some Software on a Client Computer. And Because Before Start It Needs .Net Framework 2, I Must Use Click Once Prerequisites To Install .Net Framework 2 First. And Before ...
0
votes
0answers
43 views

Write to file without \" symbols haskell

For example need this text to write a file: This is some simple text "it's quote", test test I use writeFile :: FilePath -> String -> IO () to write file, but when i try to write this string ...
0
votes
0answers
14 views

Getting Error .project file missing

I am using eclipse ide for developing my android applications.The problem is I get.project file missing for some of my projects.then i have to develop them again.But the next day wen i open the ...
0
votes
1answer
14 views

about programming with wav files in order to apply dpcm on them

I wonder how I can make a prediction algorithm related to dpcm in order to apply all this compression/modulation to a wav file. I need to make a wav file smaller ()
0
votes
0answers
10 views

How to find FileSystemTree file that user clicked with right mouse - Flex

I am using FileSystemTree, and I wish when my user clicks with right button over my tree to give him a contextMenu with option to open the file he clicked.
2
votes
1answer
52 views

Mass renaming using Python

Say I have a bunch of files on one directory, with different extensions: dsgxy7wusshg2.jpg ds65321333321.png ds2716113shg2.jpg d3171763462g2.jpg 5432125321hg2.png db37fv73v7av1.png d0zhzb38b22g2.jpg ...
1
vote
0answers
17 views

JavaScript Local app save/load file?

I'm building a GUI for a plugin and it runs in Firefox locally. Is there any way to save .data for objects out to a .js or .txt file then have the ability to load these saved files (which would just ...
0
votes
2answers
55 views

Reading lines in text files using python

I am currently programming a game that requires reading and writing lines in a text file. I was wondering if there is a way to read a specific line in the text file (i.e. the first line in the text ...
0
votes
2answers
82 views

How do i ask a user to enter a file and let c++ open this file?

Is it possible in simple c++ to ask an user to enter a path and manipulate this same file? Does anyone know a website to get to know more about this? Google wasn't that easy this time. #include ...
0
votes
2answers
60 views

How to catch a specific linux system return

I recently started to use linux, so I have little knowledge about it. At least I know that every thing in linux is a file. I would like to know how to catch a specific linux system return, for ...
1
vote
3answers
12 views

copy SVN modified files including directory to a another directory

I have a list of files in my current working copy that have been modified locally. There are about 50 files that have been changed. I am using the following command to copy files that have been ...
1
vote
5answers
44 views

How to create an SD Card image file for the Android emulator?

I need to create an SD Card image file for an Android emulator that I am running. Given that I am a beginner at Android development, a complete step-by-step tutorial would be awesome.
0
votes
4answers
37 views

How to add files to the SD Card in the Android emulator?

So I created a new Android Emulator and now want to add files to the SD card. How do I do that?
0
votes
1answer
11 views

Eclipse plugin file use

In my Eclipse plugin, I need to use a file from package explorer. I click on a file with right mouse button and select "View" (my plugin name). So, how can I reach this file path in my plugin project? ...
0
votes
1answer
41 views

script taking more than 30 second to get title url in php

<?php function getTitle($Url){ $str = file_get_contents($Url); if(strlen($str)>0){ preg_match("/\<title\>(.*)\<\/title\>/",$str,$title); return $title[1]; ...

1 2 3 4 5 908
15 30 50 per page