Displaying 6 results from an estimated 6 matches for "badfil".
Did you mean:
badfile
2019 Dec 20
0
list.files(., pattern=<>, recursive = TRUE, include.dirs = TRUE)
...~G
td = file.path(tempdir(), "listfilestst")
dns = c("good", "bad" )
dpths = file.path(td, as.vector(outer(dns, dns, paste, sep =
.Platform$file.sep)))
invisible(lapply(dpths, dir.create, recursive = TRUE))
fpths = as.vector(outer(dpths, c("goodfil", "badfil"), file.path))
invisible(sapply(fpths, function(pth) cat(" ", file = pth)))
## all files(/+dirs)
list.files(td, recursive = TRUE)
## [1] "bad/bad/badfil" "bad/bad/goodfil" "bad/good/badfil"
## [4] "bad/good/goodfil" "good/bad/badfi...
2009 Mar 21
0
[PATCH 1/1] SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
...@@ -1344,7 +1348,58 @@ searchdir:
cmp byte [di-1],'/' ; Do we expect a directory
je .isdir
- ; Otherwise, it should be a file
+ ; Otherwise, desired file is found
+ ret ; Done!
+
+ ; If we expected a directory, it better be one...
+.isdir:
+ test dl,10h ; Subdirectory
+ jz .badfile
+
+ xor eax,eax
+ xchg eax,[si+file_sector] ; Get sector number and free file structure
+ jmp .pathwalk ; Walk the next bit of the path
+
+ ; Found the desired directory; ZF set but EAX not 0
+.founddir:
+ and eax,eax ; Sector 0 is bad number
+ jz .notfound
+ call alloc_fill_dir ; re-allo...
2005 Nov 22
9
[Bug 3277] New: [Feature req] "I couldn't do something you asked" warning
https://bugzilla.samba.org/show_bug.cgi?id=3277
Summary: [Feature req] "I couldn't do something you asked"
warning
Product: rsync
Version: 2.6.7
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
2017 Mar 24
3
4 DC's to downgrade
Okay I didn't read that. surprised that it should work with the databases as is. The dbcheck function was quite involved when it was run on the 4.5.5. update.
On Thursday, 23 March 2017, 20:21, Ray Klassen <julius_ahenobarbus at yahoo.co.uk> wrote:
After upgrade massive slowdown network wide. Does not make sense that it's the samba, but I've nothing left. Question
2009 Feb 08
1
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT; Try 2
...[PrevDir],eax ; Remember last directory searched
push di
@@ -1263,12 +1367,257 @@ searchdir:
xchg eax,[si+file_sector] ; Get sector number and free file structure
jmp .pathwalk ; Walk the next bit of the path
+ ; Found the desired directory; ZF set but EAX not 0
+.founddir:
+ ret
+
.badfile:
xor eax,eax
mov [si],eax ; Free file structure
.notfound:
+ xor eax,eax ; Zero out EAX
+ ret
+
+;
+; readdir: Read one file from a directory
+;
+; ES:DI -> String buffer (filename)
+; DS:SI -> Pointer to open_file_t
+; DS Must be the SYSLINUX Data Segment
+;
+; Returns the file&...
2008 Dec 04
2
[PATCH 1/1] COMBOOT API: Add calls for directory functions; Implement for FAT
...[PrevDir],eax ; Remember last directory searched
push di
@@ -1263,12 +1340,221 @@ searchdir:
xchg eax,[si+file_sector] ; Get sector number and free file structure
jmp .pathwalk ; Walk the next bit of the path
+ ; Found the desired directory; ZF set but EAX not 0
+.founddir:
+ ret
+
.badfile:
xor eax,eax
mov [si],eax ; Free file structure
.notfound:
+ xor eax,eax ; Zero out EAX
+ ret
+
+;
+; readdir: Read one file from a directory
+;
+; ES:DI -> String buffer (filename)
+; DS:SI -> Pointer to open_file_t
+;
+; Returns the file's name in the filename string buffer...