Displaying 6 results from an estimated 6 matches for "badfile".
2019 Dec 20
0
list.files(., pattern=<>, recursive = TRUE, include.dirs = TRUE)
Hi all,
I ran into a weird corner-case of list.files today and I'm wondering what
people think about it and a potential wishlist enhancement related to it.
Consider the case where we call list.files with recursive and include.dirs both
TRUE and we supply a pattern. In this case pattern is  applied to directory
names when deciding whether to list the directory return value but NOT when
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-alloc...
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...