-2
votes
4answers
71 views

Find all lines that contains given string

System.IO.StreamReader file = new System.IO.StreamReader(@"data.txt"); List<String> Spec= new List<String>(); while (file.EndOfStream != true) { string s = file.ReadLine(); Match m ...
-1
votes
2answers
31 views

Where can I get a copy of the file libstdc++.so.6.0.15 [closed]

I am trying to fix my problem "GLIBCXX_3.4.15" not found, which is fairly well documented to fix. But it requires getting the file "libstdc++.so.6.0.15" from somewhere. Most of the solutions tell me ...
0
votes
1answer
38 views

Find files created within a second or two

Im must to find files created within a second or two but i have no idea how. Im think best way is some find pattern. Or maybe shell script. Can someone help ?
1
vote
3answers
69 views

How do i find the current directory of a batch file, and then use it for the path?

I am fairly new to batch files. I have a batch file that I intend to distribute to our customers to run a software task. We distribute them as a folder or .zip with the files inside. Inside, there ...
0
votes
2answers
154 views

Batch: find file and rename it / find file and delete it

So... yes, Im pretty newbie. Still trying to explain as good as possible. But needing help with such thing as finding exact file from C: drive (with batch), and rename it. Also wanted to know how to ...
1
vote
2answers
129 views

How to find files with specific case-insensitive extension names in Python [duplicate]

glob.glob() is case-sensitive. Is there any simple way to find files with specific case-insensitive extension names in Python.
0
votes
0answers
23 views

how to add int to existing file?

I am trying to search and find "{" bracket from a text file and add a number right after it. For example: If first bracket is found in the file, add "1" right after the first bracket, add "2" right ...
1
vote
1answer
64 views

Finding Word + X letters after it

I wanna start of by saying that I am still learnnig and some might think that my code looks like shit and blablabla but here it goes. So I have this text file we can call example.txt A line in ...
1
vote
1answer
177 views

Bash script for searching of files (file types) which are defined in the external file recursively in directory using find command

I'd like to search in the directory structure recursively for files of the specific file types. But I need to pass the file types from the external file. The output should be list where each line is ...
0
votes
1answer
60 views

how can I find files that only has the certain permission for owner using bash

I would like to find files only by a certain user's permission. For example, if I want to find a file that I have full permission. I may do something like: find . -user $(whoami) -perm But what ...
0
votes
1answer
102 views

How to traverse a directory structure to find files

I am trying to create a script that will traverse through my music directory and eventually convert anything over 192bps to 192bps. So far I have the following... #!/bin/bash ...
0
votes
0answers
44 views

Find specific file and last modified date of the file and report

I have used this website many times and saved me but this time i couldnt find anything What i want is for a script to look through folders on my d:\ and find a file called client.msi. This file ...
0
votes
1answer
64 views

ipython %run testscript_in_pythonpath.py returns “no file found” error

I would like to use the %run magic command to run a script in a directory which is in the pythonpath variable. The script reads some files in the working directory. However, when I try to run the ...
1
vote
1answer
43 views

Python3 searching in bytearray

I have this strange problem with using find()/index() (don't know if there is any difference between them) with bytesarray. I'm working with binary file, I have loaded it as bytesarray and now I ...
0
votes
3answers
101 views

Unix command to insert a comment on the top of all files in a directory

I want to add a comment to all files in a directory in Unix. Please suggest a solution if there is any combination of commands I can use.
0
votes
2answers
72 views

require File::Find: how to use File::Find::name without getting a warning?

When I load File::Find with require like this, how could I modify this script to not get the warning? #!/usr/bin/env perl use warnings; use strict; use 5.10.1; require File::Find; ...
-1
votes
2answers
124 views

.bat file to search for pst files

Can anyone help me with a (simple as possible) batch file I can unleash on a users profile to search for PST files. I would need to see the location of any PST files that were found. Thanks all
0
votes
2answers
63 views

remove blank first line script

I have this script which is printing out the files that have the first line blank: for f in `find . -regex ".*\.php"`; do for t in head; do $t -1 $f |egrep '^[ ]*$' >/dev/null && ...
1
vote
1answer
253 views

Search files by text content inside

I want to create a program that will find all the text files in a selected directory (for ex.: "C:/") that contain a certain word. I want to say: for ex., I have in "C:/", three text files with text ...
0
votes
2answers
42 views

how to search files using php (need alternative way for linux find)

I need to execute following linux find command find /home/*/mail/ -type d -name ".test" > tmp_file but using php (since the find command for some reason freeze in some OS) . How to do this ...
0
votes
2answers
67 views

File Command 108k files: Too Many Args

I have a directory that has 108k files in it. I am using the KSH shell on RHEL5 ls * -dash_bin_ksh: ls: /bin/ls: cannot execute [Argument list too long] Only command that seems to work is the find ...
-2
votes
3answers
239 views

Need batch file that finds and deletes multiple shortcuts based on their names

I've tried using findstr, but it's not working properly. I need the script to search in C:\Documents and Settings for the shortcuts (.lnk). Shortcut names Accounts Payable Approval Levels Clinical ...
-1
votes
2answers
55 views

How do I : find a string in a bunch of files, if found then copy the file over [closed]

I have to restore a mail archive; thousands of .eml files. I'd like to run a single 'find' command that will: Look for a particular string If found, copy the file over to a separate folder. Any ...
-1
votes
1answer
90 views

Mix text from 2 files

I have one question, If someone could answer me. I will try explain what I need, hope you understand. Now my code looks like: public class Testing { public static void main(String ...
0
votes
0answers
116 views

JAVA. Use 2 text files and connect their information

Helo, I have a question. Now my code looks like, It counting specific word entered by keyboard from file.txt and and elect by who It repeated : public class Testing { public ...
0
votes
2answers
1k views

Find word in text file and count specific words

now I'll try to explain what I need to do. I have file.txt file, It looks like: John //first line - name One Three Four Peter //first line - name Two Three Elisa //first line - name One Three ...
1
vote
1answer
253 views

exclamation point being removed constantly in batch file

Someone please help...oh, I will be so grateful. I have a very long batch file that is working perfectly except that every time the user enters input, it replaces strings in the files desired BUT it ...
0
votes
5answers
491 views

Find all files in all directories in c++

I am trying to find all files in all directories, but I don't know how to handle subdirectories. In this code, the code looks trough all subdirs, but I don't know how to jump back. Does anyone know ...
1
vote
6answers
2k views

Bash - How to find the largest file in a directory and its subdirectories?

We're just starting a UNIX class and are learning a variety of Bash commands. Our assignment involves performing various commands on a directory that has a number of folders under it as well. I know ...
0
votes
1answer
110 views

find files using regex with exact digits number

I'm trying to find all files on linux that would match files like these: frontend_prod_20100112.log frontend_prod_20110101.log frontend_prod_20120101.log frontend_prod_20121231.log the only ...
0
votes
0answers
60 views

CFileFind in std

I'm trying to find a way to search for a specific file in a directory and its sub directories. in MFC the CFileFind is available, is there any way in std (standard lib) ?
0
votes
2answers
650 views

Bat file to find certain text in .txt file

Just wondering if there is any code in batch file that can find a certain text or word in a .txt file. For Example: The quick brown fox jump \mark{1} over the lazy dog The quick \mark{10} brown fox ...
0
votes
2answers
229 views

How can I monitor entire computer for any file change?

I want to monitor my entire computer files for any change. Such as, file creations, deletions, modifications, attribute changes, etc. I know that there is a control called filesystemwatcher but that's ...
0
votes
1answer
259 views

is there a return value to file::find in perl? How to tell if the find fails?

I'm trying to learn perl and in particular use the File::Find module to search through a directory tree of pictures to see if any filenames already existing match those on a camera. If the filename ...
0
votes
1answer
156 views

use batch file to move files where the file name contains a set value

I have a group of PDFs and i want a batch file to move all files that have a set value in the name of the file. This value will be stored in a variable and generated by another script. For example, if ...
0
votes
6answers
119 views

Count how many full stops a text file contains in Python

I would like to write a code that will read and open a text file and tell me how many "." (full stops) it contains I have something like this but i don't know what to do now?! f = open( ...
1
vote
1answer
500 views

in bash find all files in flat directory that don't exist in another directory tree

I have many files in a directory A. Some of those files exist in a directory tree with sub-directories B/B1, B/B2, B/B3, B/B4, ... Note that some files have spaces in their names. For example: in ...
0
votes
0answers
30 views

Find and replace with special tags to include a multiple random item from several files

have been working on a project that i can't seem to figure out one part. A method will be sent a string that contains text as well as special tags, i use tags, to indicate a file location that the ...
3
votes
1answer
101 views

File name doesn't show up when looking for all files

I have a problem with my code. My findfile function doesn't show the actual name, but shows the folder name. Does anyone know what is causing the problem. path is going to be the downloads folder of ...
1
vote
1answer
353 views

Find and Replace not working for batch file

Ok so I am creating a script with a built in updater, it creates a new file with the following code and updates several variables, but for some reason this isn't working anyone have any idea how to ...
-1
votes
3answers
96 views

How can I search for a file within a directory and its sub-directories in c?

How can I search for a file within a directory and its sub-directories in C? I'm not allowed to use find and I must use opendir , readdir and stat. I want to perform something like the command ls ...
0
votes
2answers
320 views

finding a file in unix using wildcards in file name

I have few files in a folder with name pattern in which one of the section is variable. file1.abc.12.xyz file2.abc.14.xyz file3.abc.98.xyz So the third section (numeric) in above three file names ...
1
vote
1answer
201 views

FindFirstFile() show address

I used function FindFirstFile() but i received only memory address - not a file name. #include <stdafx.h> #include <iostream> #include <windows.h> using namespace std; int ...
-1
votes
1answer
221 views

Replace all files of a certain type in all directories and subdirectories?

I have played around with the find command and anything else I can think of but nothing will work. I would like my bash script to be able to find all of a file type in a given directory and all of ...
1
vote
2answers
88 views

Given the file name, how to get it from a directory in shell

I want to compare 2 files with the same name in different directories. $1 and $2 are 2 directories. I can check if there are same name files, but then i don't know how to get the 2nd file.. cd $1 ...
0
votes
2answers
3k views

How to find and remove line from file in Unix?

I have one file (for example: test.txt), this file contains some lines and for example one line is: abcd=11 But it can be for example: abcd=12 Number is different but abcd= is the same in all case, so ...
0
votes
3answers
161 views

Read multiple txt files and sort them out android

I got a little problem. I got a map (on android phone) called "Save", in that folder I got several .txt files. I know how to enter the folder, and I can read 1 txt file (hardcoded) but I want it to ...
0
votes
3answers
2k views

How to find the number of occurences of a string in file using windows command line?

I have a huge files with e-mail addresses and I would like to count how many of them are in this file. How can I do that using Windows' command line ? I have tried this but it just prints the ...
-1
votes
2answers
73 views

Running command when word appears in log? [closed]

I would like to know if there is any way to scan a text file and then run a command. I have tried grep getting nowhere. I have also tried the find . thing, it sounds promising but I can't seem to get ...
1
vote
1answer
365 views

Some Copy command in windows to copy from current location to specified location

So, I have started with this: copy | dir /s /b | find "myFile" C:\Destination but the problem is that the destination is not visible in this command. It only sees the first part of the command up ...

1 2