| 
			
			 | 
		#1 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 37 
				Karma: 10 
				Join Date: Jul 2009 
				Location: Bucharest, Romania 
				
				
				Device: Kindle 3 
				
				
				 | 
	
	
	
		
		
			
			 
				
				kindle folders
			 
			
			
			Is there anyway when putting MOBI files from my Calibre library to my Kindle to place them directly under the /document directory without any other subfolder? 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Thanks  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#2 | 
| 
			
			
			
			 reader 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 6,977 
				Karma: 5183568 
				Join Date: Mar 2006 
				Location: Mississippi, USA 
				
				
				Device: Kindle 3, Kobo Glo HD 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Change Preferences -> Sending books to device -> Save template or (probably better) override this default in Preferences -> Advanced -> Plugins -> Device interface plugins -> Kindle 2/3/4/Touch Interface -> Customize plugin -> Save template.  Remove anything up to and including the last / and change the rest to whatever you want. 
		
	
		
		
		
		
		
		
		
		
		
		
		
			What I use on my Kindle Fire (no folders allowed) is: Code: 
	{author_sort} - {series}{series_index:0>2s| - | - }{title}
Code: 
	{tags}/{author_sort[0]}/{author_sort} - {series} {series_index:0>2|| -} {title}
Last edited by wallcraft; 01-24-2012 at 01:45 AM.  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#3 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 37 
				Karma: 10 
				Join Date: Jul 2009 
				Location: Bucharest, Romania 
				
				
				Device: Kindle 3 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			I have discovered that configuring the Kindle plugin you can place the mobi files directly in the /document folder. However I was not aware of the potential slowdown. I do not have so many books but thanks for the tip  
		
	
		
		
		
		
		
		
		
		
		
		
	
	 | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#4 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 30 
				Karma: 88 
				Join Date: Apr 2012 
				
				
				
				Device: Kindle Touch (5.1.0) 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Hallo! 
		
	
		
		
		
		
		
		
		
		
		
		
	
	I have a similar problem. I want to put some books in an additional folder. So I add a custom column with column type "Yes/No" and changed the Save Template to this, so that every book with a yes in the column "extradir" will be copied to the additional directory "DirName". Code: 
	{extradir||DirName/}{author_sort}/{title} - {authors}
What did I make wrong? Best regards Dirk  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#5 | |
| 
			
			
			
			 Grand Sorcerer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 12,525 
				Karma: 8065948 
				Join Date: Jan 2010 
				Location: Notts, England 
				
				
				Device: Kobo Libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 1) The lookup name for a custom column must begin with the '#' character. 2) You left off the colon after the lookup name 3) You will get the values "YesDirName/" and "No". I assume you do not want the "Yes" or the "No" to be there. The following in single function mode fixes all three problems. Code: 
	{#extradir:test(DirName/,)}{author_sort}/{title} - {authors}
Code: 
	{#mybool:'test($, 'DirName/', '')'}{author_sort}/{title} - {authors}
Code: 
	program: strcat (test(field('#mybool'), 'DirName/', ''), template('{author_sort}/{title} - {authors}'))
 | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#6 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 30 
				Karma: 88 
				Join Date: Apr 2012 
				
				
				
				Device: Kindle Touch (5.1.0) 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Wunderful! 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Thank you!  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#7 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 30 
				Karma: 88 
				Join Date: Apr 2012 
				
				
				
				Device: Kindle Touch (5.1.0) 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			I put some tags on the book. One of these tags can identify the books like the custom column "extradir" from above. Is this the right code in single mode: 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Code: 
	{tags:contains('ExtraDir', 'DirName/', '')}{author_sort}/{title} - {authors}
Dirk  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#8 | |
| 
			
			
			
			 Grand Sorcerer 
			
			![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 12,525 
				Karma: 8065948 
				Join Date: Jan 2010 
				Location: Notts, England 
				
				
				Device: Kobo Libra 2 
				
				
				 | 
	
	
	
		
		
		
		
		 Quote: 
	
 In single function mode the template should be: Code: 
	{tags:contains(ExtraDir,DirName/,)}{author_sort}/{title} - {authors}
Code: 
	{tags:'contains($, 'ExtraDir', 'DirName/', '')'}{author_sort}/{title} - {authors}
![]() If it is a (potential) problem, then use the following template. It must be in template program mode because a comma is being used as a parameter, something that cannot be done in single function mode. Code: 
	{tags:'in_list($, ',', '^allbooks$', 'DirName/', '')'}{author_sort}/{title} - {authors}
Adding "^" and "$" in contains will not work if there is nore than one tag, because all the tags are checked as a single value. Example: assume the tags for a book are "Fiction, Thriller, ExtraDir". The pattern is compared against all three at once, not just the last one, so "^ExtraDir$" will match nothing.  | 
|
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
| 
			
			 | 
		#9 | 
| 
			
			
			
			 Enthusiast 
			
			![]() Posts: 30 
				Karma: 88 
				Join Date: Apr 2012 
				
				
				
				Device: Kindle Touch (5.1.0) 
				
				
				 | 
	
	
	
		
		
		
		
		 
			
			Thank you! That helps me a lot. 
		
	
		
		
		
		
		
		
		
		
		
		
	
	Best regards Dirk  | 
| 
		 | 
	
	
	
		
		
		
		
			 
		
		
		
		
		
		
		
			
		
		
		
	 | 
![]()  | 
            
        
    
            
  | 
    
			 
			Similar Threads
		 | 
	||||
| Thread | Thread Starter | Forum | Replies | Last Post | 
| Library structure series folders vs author folders | Eric41 | Library Management | 2 | 12-08-2011 02:30 AM | 
| Troubleshooting where are my kindle folders? | bilgisiz | Amazon Kindle | 6 | 09-17-2011 05:59 AM | 
| New kindle and folders | Dragoro | Amazon Kindle | 6 | 07-28-2010 04:37 PM | 
| Folders! I've got folders! - A short review of the BeBook Mini | Elsi | BeBook | 10 | 09-26-2009 03:47 AM | 
| Kindle 2-- no more folders | slm | Amazon Kindle | 5 | 02-11-2009 08:09 PM |